summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/w3c/dom/svg/SVGLocatable.java
blob: 4b5862183acf9244bfcd7ecc89c093c8bc4d678a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13

package org.w3c.dom.svg;

public interface SVGLocatable {
  public SVGElement              getNearestViewportElement( );
  public SVGElement              getFarthestViewportElement( );

  public SVGRect   getBBox (  );
  public SVGMatrix getCTM (  );
  public SVGMatrix getScreenCTM (  );
  public SVGMatrix getTransformToElement ( SVGElement element )
                  throws SVGException;
}