Uses of Class
io.github.sosuisen.jfxbuilder.graphics.DisplacementMapBuilder
Packages that use DisplacementMapBuilder
-
Uses of DisplacementMapBuilder in io.github.sosuisen.jfxbuilder.graphics
Methods in io.github.sosuisen.jfxbuilder.graphics that return DisplacementMapBuilderModifier and TypeMethodDescriptionDisplacementMapBuilder.apply
(Consumer<DisplacementMap> func) Applies a function to the DisplacementMap instance being constructed.static DisplacementMapBuilder
DisplacementMapBuilder.create()
Returns an instance of theDisplacementMapBuilder
.static DisplacementMapBuilder
Accepts the constructor arguments ofDisplacementMap(FloatMap)
and returns an instance ofDisplacementMapBuilder
.static DisplacementMapBuilder
DisplacementMapBuilder.create
(FloatMap mapData, double offsetX, double offsetY, double scaleX, double scaleY) Accepts the constructor arguments ofDisplacementMap(FloatMap, double, double, double, double)
and returns an instance ofDisplacementMapBuilder
.A builder method that invokes thesetInput
method on the instance being constructed.DisplacementMapBuilder.inputPropertyApply
(Consumer<ObjectProperty<Effect>> op) Applies a function to theinputProperty
of the instance being constructed.A builder method that invokes thesetMapData
method on the instance being constructed.DisplacementMapBuilder.mapDataPropertyApply
(Consumer<ObjectProperty<FloatMap>> op) Applies a function to themapDataProperty
of the instance being constructed.DisplacementMapBuilder.offsetX
(double value) A builder method that invokes thesetOffsetX
method on the instance being constructed.DisplacementMapBuilder.offsetXPropertyApply
(Consumer<DoubleProperty> op) Applies a function to theoffsetXProperty
of the instance being constructed.DisplacementMapBuilder.offsetY
(double value) A builder method that invokes thesetOffsetY
method on the instance being constructed.DisplacementMapBuilder.offsetYPropertyApply
(Consumer<DoubleProperty> op) Applies a function to theoffsetYProperty
of the instance being constructed.DisplacementMapBuilder.scaleX
(double value) A builder method that invokes thesetScaleX
method on the instance being constructed.DisplacementMapBuilder.scaleXPropertyApply
(Consumer<DoubleProperty> op) Applies a function to thescaleXProperty
of the instance being constructed.DisplacementMapBuilder.scaleY
(double value) A builder method that invokes thesetScaleY
method on the instance being constructed.DisplacementMapBuilder.scaleYPropertyApply
(Consumer<DoubleProperty> op) Applies a function to thescaleYProperty
of the instance being constructed.DisplacementMapBuilder.wrap
(boolean value) A builder method that invokes thesetWrap
method on the instance being constructed.DisplacementMapBuilder.wrapPropertyApply
(Consumer<BooleanProperty> op) Applies a function to thewrapProperty
of the instance being constructed.