elemental2.svg.SVGTransformList Maven / Gradle / Ivy
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(double 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