1 2 package org.w3c.dom.svg; 3 4 public interface SVGLocatable { 5 public SVGElement getNearestViewportElement( ); 6 public SVGElement getFarthestViewportElement( ); 7 8 public SVGRect getBBox ( ); 9 public SVGMatrix getCTM ( ); 10 public SVGMatrix getScreenCTM ( ); 11 public SVGMatrix getTransformToElement ( SVGElement element ) 12 throws SVGException; 13 } 14 | Popular Tags |