Uses of Class
io.github.sosuisen.jfxbuilder.graphics.MoveToBuilder
Packages that use MoveToBuilder
-
Uses of MoveToBuilder in io.github.sosuisen.jfxbuilder.graphics
Methods in io.github.sosuisen.jfxbuilder.graphics that return MoveToBuilderModifier and TypeMethodDescriptionMoveToBuilder.absolute
(boolean value) A builder method that invokes thesetAbsolute
method on the instance being constructed.MoveToBuilder.absolutePropertyApply
(Consumer<BooleanProperty> op) Applies a function to theabsoluteProperty
of the instance being constructed.Applies a function to the MoveTo instance being constructed.static MoveToBuilder
MoveToBuilder.create()
Returns an instance of theMoveToBuilder
.static MoveToBuilder
MoveToBuilder.create
(double x, double y) Accepts the constructor arguments ofMoveTo(double, double)
and returns an instance ofMoveToBuilder
.MoveToBuilder.x
(double value) A builder method that invokes thesetX
method on the instance being constructed.MoveToBuilder.xPropertyApply
(Consumer<DoubleProperty> op) Applies a function to thexProperty
of the instance being constructed.MoveToBuilder.y
(double value) A builder method that invokes thesetY
method on the instance being constructed.MoveToBuilder.yPropertyApply
(Consumer<DoubleProperty> op) Applies a function to theyProperty
of the instance being constructed.