Uses of Class
io.github.sosuisen.jfxbuilder.graphics.ScaleBuilder
Packages that use ScaleBuilder
-
Uses of ScaleBuilder in io.github.sosuisen.jfxbuilder.graphics
Methods in io.github.sosuisen.jfxbuilder.graphics that return ScaleBuilderModifier and TypeMethodDescriptionApplies a function to the Scale instance being constructed.static ScaleBuilder
ScaleBuilder.create()
Returns an instance of theScaleBuilder
.static ScaleBuilder
ScaleBuilder.create
(double x, double y) Accepts the constructor arguments ofScale(double, double)
and returns an instance ofScaleBuilder
.static ScaleBuilder
ScaleBuilder.create
(double x, double y, double z) Accepts the constructor arguments ofScale(double, double, double)
and returns an instance ofScaleBuilder
.static ScaleBuilder
ScaleBuilder.create
(double x, double y, double pivotX, double pivotY) Accepts the constructor arguments ofScale(double, double, double, double)
and returns an instance ofScaleBuilder
.static ScaleBuilder
ScaleBuilder.create
(double x, double y, double z, double pivotX, double pivotY, double pivotZ) Accepts the constructor arguments ofScale(double, double, double, double, double, double)
and returns an instance ofScaleBuilder
.ScaleBuilder.identityPropertyApply
(Consumer<ReadOnlyBooleanProperty> op) Applies a function to theidentityProperty
of the instance being constructed.ScaleBuilder.onTransformChanged
(EventHandler<? super TransformChangedEvent> value) A builder method that invokes thesetOnTransformChanged
method on the instance being constructed.ScaleBuilder.onTransformChangedPropertyApply
(Consumer<ObjectProperty<EventHandler<? super TransformChangedEvent>>> op) Applies a function to theonTransformChangedProperty
of the instance being constructed.ScaleBuilder.pivotX
(double value) A builder method that invokes thesetPivotX
method on the instance being constructed.ScaleBuilder.pivotXPropertyApply
(Consumer<DoubleProperty> op) Applies a function to thepivotXProperty
of the instance being constructed.ScaleBuilder.pivotY
(double value) A builder method that invokes thesetPivotY
method on the instance being constructed.ScaleBuilder.pivotYPropertyApply
(Consumer<DoubleProperty> op) Applies a function to thepivotYProperty
of the instance being constructed.ScaleBuilder.pivotZ
(double value) A builder method that invokes thesetPivotZ
method on the instance being constructed.ScaleBuilder.pivotZPropertyApply
(Consumer<DoubleProperty> op) Applies a function to thepivotZProperty
of the instance being constructed.ScaleBuilder.type2DPropertyApply
(Consumer<ReadOnlyBooleanProperty> op) Applies a function to thetype2DProperty
of the instance being constructed.ScaleBuilder.x
(double value) A builder method that invokes thesetX
method on the instance being constructed.ScaleBuilder.xPropertyApply
(Consumer<DoubleProperty> op) Applies a function to thexProperty
of the instance being constructed.ScaleBuilder.y
(double value) A builder method that invokes thesetY
method on the instance being constructed.ScaleBuilder.yPropertyApply
(Consumer<DoubleProperty> op) Applies a function to theyProperty
of the instance being constructed.ScaleBuilder.z
(double value) A builder method that invokes thesetZ
method on the instance being constructed.ScaleBuilder.zPropertyApply
(Consumer<DoubleProperty> op) Applies a function to thezProperty
of the instance being constructed.