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

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

package js.web.dom.svg;

import org.teavm.jso.JSBody;
import org.teavm.jso.JSProperty;


public interface SVGPathSegCurvetoCubicSmoothAbs extends SVGPathSeg {
    @JSBody(script = "return SVGPathSegCurvetoCubicSmoothAbs.prototype")
    static SVGPathSegCurvetoCubicSmoothAbs prototype() {
        throw new UnsupportedOperationException("Available only in JavaScript");
    }

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

    @JSProperty
    double getX();

    @JSProperty
    void setX(double x);

    @JSProperty
    double getX2();

    @JSProperty
    void setX2(double x2);

    @JSProperty
    double getY();

    @JSProperty
    void setY(double y);

    @JSProperty
    double getY2();

    @JSProperty
    void setY2(double y2);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy