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 thesetAbsolute
method on the instance being constructed.CubicCurveToBuilder.absolutePropertyApply
(Consumer<BooleanProperty> op) Applies a function to theabsoluteProperty
of 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 thesetControlX1
method on the instance being constructed.CubicCurveToBuilder.controlX1PropertyApply
(Consumer<DoubleProperty> op) Applies a function to thecontrolX1Property
of the instance being constructed.CubicCurveToBuilder.controlX2
(double value) A builder method that invokes thesetControlX2
method on the instance being constructed.CubicCurveToBuilder.controlX2PropertyApply
(Consumer<DoubleProperty> op) Applies a function to thecontrolX2Property
of the instance being constructed.CubicCurveToBuilder.controlY1
(double value) A builder method that invokes thesetControlY1
method on the instance being constructed.CubicCurveToBuilder.controlY1PropertyApply
(Consumer<DoubleProperty> op) Applies a function to thecontrolY1Property
of the instance being constructed.CubicCurveToBuilder.controlY2
(double value) A builder method that invokes thesetControlY2
method on the instance being constructed.CubicCurveToBuilder.controlY2PropertyApply
(Consumer<DoubleProperty> op) Applies a function to thecontrolY2Property
of the instance being constructed.static CubicCurveToBuilder
CubicCurveToBuilder.create()
Returns an instance of theCubicCurveToBuilder
.static CubicCurveToBuilder
CubicCurveToBuilder.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 thesetX
method on the instance being constructed.CubicCurveToBuilder.xPropertyApply
(Consumer<DoubleProperty> op) Applies a function to thexProperty
of the instance being constructed.CubicCurveToBuilder.y
(double value) A builder method that invokes thesetY
method on the instance being constructed.CubicCurveToBuilder.yPropertyApply
(Consumer<DoubleProperty> op) Applies a function to theyProperty
of the instance being constructed.