All Downloads are FREE. Search and download functionalities are using the official Maven repository.

js.web.dom.svg.SVGPolygonElement Maven / Gradle / Ivy

package js.web.dom.svg;

import org.teavm.jso.JSBody;

/**
 * Provides access to the properties of <polygon> elements, as well as methods to manipulate them.
 */
public interface SVGPolygonElement extends SVGGeometryElement, SVGAnimatedPoints {
    @JSBody(script = "return SVGPolygonElement.prototype")
    static SVGPolygonElement prototype() {
        throw new UnsupportedOperationException("Available only in JavaScript");
    }

    @JSBody(script = "return new SVGPolygonElement()")
    static SVGPolygonElement create() {
        throw new UnsupportedOperationException("Available only in JavaScript");
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy