Class PathElement2dfx.ArcPathElement2dfx

    • Constructor Detail

      • ArcPathElement2dfx

        ArcPathElement2dfx​(javafx.beans.property.DoubleProperty fromx,
                           javafx.beans.property.DoubleProperty fromy,
                           javafx.beans.property.DoubleProperty tox,
                           javafx.beans.property.DoubleProperty toy,
                           javafx.beans.property.DoubleProperty xradius,
                           javafx.beans.property.DoubleProperty yradius,
                           javafx.beans.property.DoubleProperty xrotation,
                           javafx.beans.property.BooleanProperty largeArcFlag,
                           javafx.beans.property.BooleanProperty sweepFlag)
        Constructor.
        Parameters:
        fromx - x coordinate of the origin point.
        fromy - y coordinate of the origin point.
        tox - x coordinate of the target point.
        toy - y coordinate of the target point.
        xradius - radius of the ellipse along its x axis.
        yradius - radius of the ellipse along its y axis.
        xrotation - rotation (in radians) of the ellipse's x axis.
        largeArcFlag - true iff the path will sweep the long way around the ellipse.
        sweepFlag - true iff the path will sweep clockwise around the ellipse.
      • ArcPathElement2dfx

        ArcPathElement2dfx​(Point2dfx fromPoint,
                           Point2dfx toPoint,
                           javafx.beans.property.DoubleProperty xradius,
                           javafx.beans.property.DoubleProperty yradius,
                           javafx.beans.property.DoubleProperty xrotation,
                           javafx.beans.property.BooleanProperty largeArcFlag,
                           javafx.beans.property.BooleanProperty sweepFlag)
        Constructor by setting.
        Parameters:
        fromPoint - the point to set as the origin point.
        toPoint - the point to set as the target point.
        xradius - radius of the ellipse along its x axis.
        yradius - radius of the ellipse along its y axis.
        xrotation - rotation (in radians) of the ellipse's x axis.
        largeArcFlag - true iff the path will sweep the long way around the ellipse.
        sweepFlag - true iff the path will sweep clockwise around the ellipse.