Class Light.Distant
java.lang.Object
javafx.scene.effect.Light
javafx.scene.effect.Light.Distant
- Enclosing class:
Light
Represents a distant light source.
Example:
Light.Distant light = new Light.Distant();
light.setAzimuth(45.0);
light.setElevation(30.0);
Lighting lighting = new Lighting();
lighting.setLight(light);
lighting.setSurfaceScale(5.0);
Text text = new Text();
text.setText("Distant");
text.setFill(Color.STEELBLUE);
text.setFont(Font.font("null", FontWeight.BOLD, 80));
text.setX(10.0f);
text.setY(10.0f);
text.setTextOrigin(VPos.TOP);
text.setEffect(lighting);
Rectangle rect = new Rectangle(300,150);
rect.setFill(Color.ALICEBLUE);
rect.setEffect(lighting);
The code above produces the following:
- Since:
- JavaFX 2.0
-
Nested Class Summary
Nested classes/interfaces declared in class javafx.scene.effect.Light
Light.Distant, Light.Point, Light.Spot
-
Property Summary
TypePropertyDescriptionfinal DoubleProperty
The azimuth of the light.final DoubleProperty
The elevation of the light. -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionfinal DoubleProperty
The azimuth of the light.final DoubleProperty
The elevation of the light.final double
Gets the value of theazimuth
property.final double
Gets the value of theelevation
property.final void
setAzimuth
(double value) Sets the value of theazimuth
property.final void
setElevation
(double value) Sets the value of theelevation
property.Methods declared in class javafx.scene.effect.Light
colorProperty, getColor, setColor
-
Property Details
-
azimuth
The azimuth of the light. The azimuth is the direction angle for the light source on the XY plane, in degrees.Min: n/a Max: n/a Default: 45.0 Identity: n/a
- Default value:
- 45.0
- See Also:
-
elevation
The elevation of the light. The elevation is the direction angle for the light source on the YZ plane, in degrees.Min: n/a Max: n/a Default: 45.0 Identity: n/a
- Default value:
- 45.0
- See Also:
-
-
Constructor Details
-
Distant
public Distant()Creates a new instance of Distant light with default parameters. -
Distant
Creates a new instance of Distant light with the specified azimuth, elevation, and color.- Parameters:
azimuth
- the azimuth of the lightelevation
- the elevation of the lightcolor
- the color of the light- Since:
- JavaFX 2.1
-
-
Method Details
-
setAzimuth
public final void setAzimuth(double value) Sets the value of theazimuth
property.- Property description:
- The azimuth of the light. The azimuth is the direction angle
for the light source on the XY plane, in degrees.
Min: n/a Max: n/a Default: 45.0 Identity: n/a
- Default value:
- 45.0
- Parameters:
value
- the value for theazimuth
property- See Also:
-
getAzimuth
public final double getAzimuth()Gets the value of theazimuth
property.- Property description:
- The azimuth of the light. The azimuth is the direction angle
for the light source on the XY plane, in degrees.
Min: n/a Max: n/a Default: 45.0 Identity: n/a
- Default value:
- 45.0
- Returns:
- the value of the
azimuth
property - See Also:
-
azimuthProperty
The azimuth of the light. The azimuth is the direction angle for the light source on the XY plane, in degrees.Min: n/a Max: n/a Default: 45.0 Identity: n/a
- Default value:
- 45.0
- Returns:
- the
azimuth
property - See Also:
-
setElevation
public final void setElevation(double value) Sets the value of theelevation
property.- Property description:
- The elevation of the light. The elevation is the
direction angle for the light source on the YZ plane, in degrees.
Min: n/a Max: n/a Default: 45.0 Identity: n/a
- Default value:
- 45.0
- Parameters:
value
- the value for theelevation
property- See Also:
-
getElevation
public final double getElevation()Gets the value of theelevation
property.- Property description:
- The elevation of the light. The elevation is the
direction angle for the light source on the YZ plane, in degrees.
Min: n/a Max: n/a Default: 45.0 Identity: n/a
- Default value:
- 45.0
- Returns:
- the value of the
elevation
property - See Also:
-
elevationProperty
The elevation of the light. The elevation is the direction angle for the light source on the YZ plane, in degrees.Min: n/a Max: n/a Default: 45.0 Identity: n/a
- Default value:
- 45.0
- Returns:
- the
elevation
property - See Also:
-