Uses of Class
io.github.sosuisen.jfxbuilder.graphics.CubicCurveToBuilder
Packages that use CubicCurveToBuilder
-
Uses of CubicCurveToBuilder in io.github.sosuisen.jfxbuilder.graphics
Methods in io.github.sosuisen.jfxbuilder.graphics that return CubicCurveToBuilderModifier and TypeMethodDescriptionCubicCurveToBuilder.absolute(boolean value) A builder method that invokes thesetAbsolutemethod on the instance being constructed.CubicCurveToBuilder.absolutePropertyApply(Consumer<BooleanProperty> op) Applies a function to theabsolutePropertyof the instance being constructed.CubicCurveToBuilder.apply(Consumer<CubicCurveTo> func) Applies a function to the CubicCurveTo instance being constructed.CubicCurveToBuilder.controlX1(double value) A builder method that invokes thesetControlX1method on the instance being constructed.CubicCurveToBuilder.controlX1PropertyApply(Consumer<DoubleProperty> op) Applies a function to thecontrolX1Propertyof the instance being constructed.CubicCurveToBuilder.controlX2(double value) A builder method that invokes thesetControlX2method on the instance being constructed.CubicCurveToBuilder.controlX2PropertyApply(Consumer<DoubleProperty> op) Applies a function to thecontrolX2Propertyof the instance being constructed.CubicCurveToBuilder.controlY1(double value) A builder method that invokes thesetControlY1method on the instance being constructed.CubicCurveToBuilder.controlY1PropertyApply(Consumer<DoubleProperty> op) Applies a function to thecontrolY1Propertyof the instance being constructed.CubicCurveToBuilder.controlY2(double value) A builder method that invokes thesetControlY2method on the instance being constructed.CubicCurveToBuilder.controlY2PropertyApply(Consumer<DoubleProperty> op) Applies a function to thecontrolY2Propertyof the instance being constructed.static CubicCurveToBuilderCubicCurveToBuilder.create()Returns an instance of theCubicCurveToBuilder.static CubicCurveToBuilderCubicCurveToBuilder.create(double controlX1, double controlY1, double controlX2, double controlY2, double x, double y) Accepts the constructor arguments ofCubicCurveTo(double, double, double, double, double, double)and returns an instance ofCubicCurveToBuilder.CubicCurveToBuilder.x(double value) A builder method that invokes thesetXmethod on the instance being constructed.CubicCurveToBuilder.xPropertyApply(Consumer<DoubleProperty> op) Applies a function to thexPropertyof the instance being constructed.CubicCurveToBuilder.y(double value) A builder method that invokes thesetYmethod on the instance being constructed.CubicCurveToBuilder.yPropertyApply(Consumer<DoubleProperty> op) Applies a function to theyPropertyof the instance being constructed.