elemental2.svg.SVGTransformList Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of elemental2-svg Show documentation
Show all versions of elemental2-svg Show documentation
Thin Java abstractions for the native SVG APIs.
package elemental2.svg;
import jsinterop.annotations.JsPackage;
import jsinterop.annotations.JsType;
@JsType(isNative = true, namespace = JsPackage.GLOBAL)
public class SVGTransformList {
public int numberOfItems;
public native SVGTransform appendItem(SVGTransform item);
public native Object clear();
public native SVGTransform consolidate();
public native SVGTransform createSVGTransformFromMatrix(SVGMatrix matrix);
public native SVGTransform getItem(int index);
public native SVGTransform initialize(SVGTransform item);
public native SVGTransform insertItemBefore(SVGTransform item, int index);
public native SVGTransform removeItem(int index);
public native SVGTransform replaceItem(SVGTransform item, int index);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy