Uses of Class
io.github.sosuisen.jfxbuilder.graphics.QuadCurveToBuilder
Packages that use QuadCurveToBuilder
-
Uses of QuadCurveToBuilder in io.github.sosuisen.jfxbuilder.graphics
Methods in io.github.sosuisen.jfxbuilder.graphics that return QuadCurveToBuilderModifier and TypeMethodDescriptionQuadCurveToBuilder.absolute
(boolean value) A builder method that invokes thesetAbsolute
method on the instance being constructed.QuadCurveToBuilder.absolutePropertyApply
(Consumer<BooleanProperty> op) Applies a function to theabsoluteProperty
of the instance being constructed.QuadCurveToBuilder.apply
(Consumer<QuadCurveTo> func) Applies a function to the QuadCurveTo instance being constructed.QuadCurveToBuilder.controlX
(double value) A builder method that invokes thesetControlX
method on the instance being constructed.QuadCurveToBuilder.controlXPropertyApply
(Consumer<DoubleProperty> op) Applies a function to thecontrolXProperty
of the instance being constructed.QuadCurveToBuilder.controlY
(double value) A builder method that invokes thesetControlY
method on the instance being constructed.QuadCurveToBuilder.controlYPropertyApply
(Consumer<DoubleProperty> op) Applies a function to thecontrolYProperty
of the instance being constructed.static QuadCurveToBuilder
QuadCurveToBuilder.create()
Returns an instance of theQuadCurveToBuilder
.static QuadCurveToBuilder
QuadCurveToBuilder.create
(double controlX, double controlY, double x, double y) Accepts the constructor arguments ofQuadCurveTo(double, double, double, double)
and returns an instance ofQuadCurveToBuilder
.QuadCurveToBuilder.x
(double value) A builder method that invokes thesetX
method on the instance being constructed.QuadCurveToBuilder.xPropertyApply
(Consumer<DoubleProperty> op) Applies a function to thexProperty
of the instance being constructed.QuadCurveToBuilder.y
(double value) A builder method that invokes thesetY
method on the instance being constructed.QuadCurveToBuilder.yPropertyApply
(Consumer<DoubleProperty> op) Applies a function to theyProperty
of the instance being constructed.