Class PathElement2dfx.QuadPathElement2dfx

    • Constructor Detail

      • QuadPathElement2dfx

        QuadPathElement2dfx​(javafx.beans.property.DoubleProperty fromx,
                            javafx.beans.property.DoubleProperty fromy,
                            javafx.beans.property.DoubleProperty ctrlx,
                            javafx.beans.property.DoubleProperty ctrly,
                            javafx.beans.property.DoubleProperty tox,
                            javafx.beans.property.DoubleProperty toy)
        Constructor.
        Parameters:
        fromx - x coordinate of the origin point.
        fromy - y coordinate of the origin point.
        ctrlx - x coordinate of the control point.
        ctrly - y coordinate of the control point.
        tox - x coordinate of the target point.
        toy - y coordinate of the target point.
      • QuadPathElement2dfx

        QuadPathElement2dfx​(Point2dfx fromPoint,
                            Point2dfx ctrlPoint,
                            Point2dfx toPoint)
        Constructor by setting.
        Parameters:
        fromPoint - the point to set as the origin point.
        ctrlPoint - the point to set as the control point.
        toPoint - the point to set as the target point.