niagara-ax/decompiled/org/w3c/dom/svg/SVGLocatable.java
2026-03-17 13:31:18 -07:00

16 lines
311 B
Java

package org.w3c.dom.svg;
public interface SVGLocatable {
SVGRect getBBox();
SVGMatrix getCTM();
SVGElement getFarthestViewportElement();
SVGElement getNearestViewportElement();
SVGMatrix getScreenCTM();
SVGMatrix getTransformToElement(SVGElement sVGElement) throws SVGException;
}