Uses of Class
io.github.sosuisen.jfxbuilder.graphics.TranslateBuilder
Packages that use TranslateBuilder
-
Uses of TranslateBuilder in io.github.sosuisen.jfxbuilder.graphics
Methods in io.github.sosuisen.jfxbuilder.graphics that return TranslateBuilderModifier and TypeMethodDescriptionApplies a function to the Translate instance being constructed.static TranslateBuilder
TranslateBuilder.create()
Returns an instance of theTranslateBuilder
.static TranslateBuilder
TranslateBuilder.create
(double x, double y) Accepts the constructor arguments ofTranslate(double, double)
and returns an instance ofTranslateBuilder
.static TranslateBuilder
TranslateBuilder.create
(double x, double y, double z) Accepts the constructor arguments ofTranslate(double, double, double)
and returns an instance ofTranslateBuilder
.TranslateBuilder.identityPropertyApply
(Consumer<ReadOnlyBooleanProperty> op) Applies a function to theidentityProperty
of the instance being constructed.TranslateBuilder.onTransformChanged
(EventHandler<? super TransformChangedEvent> value) A builder method that invokes thesetOnTransformChanged
method on the instance being constructed.TranslateBuilder.onTransformChangedPropertyApply
(Consumer<ObjectProperty<EventHandler<? super TransformChangedEvent>>> op) Applies a function to theonTransformChangedProperty
of the instance being constructed.TranslateBuilder.type2DPropertyApply
(Consumer<ReadOnlyBooleanProperty> op) Applies a function to thetype2DProperty
of the instance being constructed.TranslateBuilder.x
(double value) A builder method that invokes thesetX
method on the instance being constructed.TranslateBuilder.xPropertyApply
(Consumer<DoubleProperty> op) Applies a function to thexProperty
of the instance being constructed.TranslateBuilder.y
(double value) A builder method that invokes thesetY
method on the instance being constructed.TranslateBuilder.yPropertyApply
(Consumer<DoubleProperty> op) Applies a function to theyProperty
of the instance being constructed.TranslateBuilder.z
(double value) A builder method that invokes thesetZ
method on the instance being constructed.TranslateBuilder.zPropertyApply
(Consumer<DoubleProperty> op) Applies a function to thezProperty
of the instance being constructed.