Uses of Class
io.github.sosuisen.jfxbuilder.graphics.LightPointBuilder
Packages that use LightPointBuilder
-
Uses of LightPointBuilder in io.github.sosuisen.jfxbuilder.graphics
Methods in io.github.sosuisen.jfxbuilder.graphics that return LightPointBuilderModifier and TypeMethodDescriptionLightPointBuilder.apply
(Consumer<Light.Point> func) Applies a function to the Point instance being constructed.A builder method that invokes thesetColor
method on the instance being constructed.LightPointBuilder.colorPropertyApply
(Consumer<ObjectProperty<Color>> op) Applies a function to thecolorProperty
of the instance being constructed.static LightPointBuilder
LightPointBuilder.create()
Returns an instance of theLightPointBuilder
.static LightPointBuilder
Accepts the constructor arguments ofPoint(double, double, double, Color)
and returns an instance ofLightPointBuilder
.LightPointBuilder.x
(double value) A builder method that invokes thesetX
method on the instance being constructed.LightPointBuilder.xPropertyApply
(Consumer<DoubleProperty> op) Applies a function to thexProperty
of the instance being constructed.LightPointBuilder.y
(double value) A builder method that invokes thesetY
method on the instance being constructed.LightPointBuilder.yPropertyApply
(Consumer<DoubleProperty> op) Applies a function to theyProperty
of the instance being constructed.LightPointBuilder.z
(double value) A builder method that invokes thesetZ
method on the instance being constructed.LightPointBuilder.zPropertyApply
(Consumer<DoubleProperty> op) Applies a function to thezProperty
of the instance being constructed.