Uses of Class
io.github.sosuisen.jfxbuilder.graphics.ArcToBuilder
Packages that use ArcToBuilder
-
Uses of ArcToBuilder in io.github.sosuisen.jfxbuilder.graphics
Methods in io.github.sosuisen.jfxbuilder.graphics that return ArcToBuilderModifier and TypeMethodDescriptionArcToBuilder.absolute
(boolean value) A builder method that invokes thesetAbsolute
method on the instance being constructed.ArcToBuilder.absolutePropertyApply
(Consumer<BooleanProperty> op) Applies a function to theabsoluteProperty
of the instance being constructed.Applies a function to the ArcTo instance being constructed.static ArcToBuilder
ArcToBuilder.create()
Returns an instance of theArcToBuilder
.static ArcToBuilder
ArcToBuilder.create
(double radiusX, double radiusY, double xAxisRotation, double x, double y, boolean largeArcFlag, boolean sweepFlag) Accepts the constructor arguments ofArcTo(double, double, double, double, double, boolean, boolean)
and returns an instance ofArcToBuilder
.ArcToBuilder.largeArcFlag
(boolean value) A builder method that invokes thesetLargeArcFlag
method on the instance being constructed.ArcToBuilder.largeArcFlagPropertyApply
(Consumer<BooleanProperty> op) Applies a function to thelargeArcFlagProperty
of the instance being constructed.ArcToBuilder.radiusX
(double value) A builder method that invokes thesetRadiusX
method on the instance being constructed.ArcToBuilder.radiusXPropertyApply
(Consumer<DoubleProperty> op) Applies a function to theradiusXProperty
of the instance being constructed.ArcToBuilder.radiusY
(double value) A builder method that invokes thesetRadiusY
method on the instance being constructed.ArcToBuilder.radiusYPropertyApply
(Consumer<DoubleProperty> op) Applies a function to theradiusYProperty
of the instance being constructed.ArcToBuilder.sweepFlag
(boolean value) A builder method that invokes thesetSweepFlag
method on the instance being constructed.ArcToBuilder.sweepFlagPropertyApply
(Consumer<BooleanProperty> op) Applies a function to thesweepFlagProperty
of the instance being constructed.ArcToBuilder.x
(double value) A builder method that invokes thesetX
method on the instance being constructed.ArcToBuilder.xAxisRotation
(double value) A builder method that invokes thesetXAxisRotation
method on the instance being constructed.ArcToBuilder.XAxisRotationPropertyApply
(Consumer<DoubleProperty> op) Applies a function to theXAxisRotationProperty
of the instance being constructed.ArcToBuilder.xPropertyApply
(Consumer<DoubleProperty> op) Applies a function to thexProperty
of the instance being constructed.ArcToBuilder.y
(double value) A builder method that invokes thesetY
method on the instance being constructed.ArcToBuilder.yPropertyApply
(Consumer<DoubleProperty> op) Applies a function to theyProperty
of the instance being constructed.