Class PathElement2ifx.ArcPathElement2ifx

    • Constructor Detail

      • ArcPathElement2ifx

        ArcPathElement2ifx​(javafx.beans.property.IntegerProperty fromx,
                           javafx.beans.property.IntegerProperty fromy,
                           javafx.beans.property.IntegerProperty tox,
                           javafx.beans.property.IntegerProperty toy,
                           javafx.beans.property.IntegerProperty xradius,
                           javafx.beans.property.IntegerProperty 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.
      • ArcPathElement2ifx

        ArcPathElement2ifx​(Point2ifx fromPoint,
                           Point2ifx toPoint,
                           javafx.beans.property.IntegerProperty xradius,
                           javafx.beans.property.IntegerProperty 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.