JavaFX | Light.Spot Class

Light.Spot class is a part of JavaFX. Light.Spot class is used to create a spot light with configurable values of direction vector of light, focus and Color in 3D space. Light.Spot class inherits Light.Point class.
Constructors of the class:
- Spot(): Creates a spot light with default values
- Spot(double x, double y, double z, double s, Color c): Creates a spot light with specified values of x, y, z, specularExponent and color of light
Commonly Used Methods:
| Methods | Explanation |
|---|---|
| getPointsAtX() | Returns the x coordinate of the direction vector of light. |
| getPointsAtY() | Returns the y coordinate of the direction vector of light. |
| getPointsAtZ() | Returns the z coordinate of the direction vector of light. |
| getSpecularExponent() | Returns the value of specularExponent. |
| setPointsAtX(double v) | Sets the value of x coordinate of the direction vector of light. |
| setPointsAtY(double v) | Sets the value of y coordinate of the direction vector of light. |
| setPointsAtZ(double v) | Sets the value of z coordinate of the direction vector of light. |
| setSpecularExponent(double v) | Sets the value of specularExponent. |
Below programs illustrate the use of Light.Spot class:
- Java Program to create a Spot light and add it to a rectangle: In this program we will create a Rectangle named rectangle with specified height and width. We will also create a Light.Spot object named light. We will set the x, y, z values using setX(), setY() and setZ() function. Now create a lighting object and add the light object to lighting using setLight() function. We will set the Lighting effect to the Rectangle and add it to the scene and add the scene to the stage and call the show function to display the results.
// Java Program to create a Spot light// and add it to a rectangleimportjavafx.application.Application;importjavafx.scene.Scene;importjavafx.scene.shape.Rectangle;importjavafx.scene.control.*;importjavafx.stage.Stage;importjavafx.scene.Group;importjavafx.scene.effect.Light.*;importjavafx.scene.effect.*;importjavafx.scene.paint.Color;publicclassSpot_1extendsApplication {// launch the applicationpublicvoidstart(Stage stage){// set title for the stagestage.setTitle("creating Light.Spot");// create Spot Light objectLight.Spot light =newLight.Spot();// set coordinateslight.setX(100);light.setY(100);light.setZ(100);// create a lightingLighting lighting =newLighting();// set Light of lightinglighting.setLight(light);// create a rectangleRectangle rect =newRectangle(250,250);// set fillrect.setFill(Color.WHITE);// set effectrect.setEffect(lighting);// create a GroupGroup group =newGroup(rect);// create a sceneScene scene =newScene(group,500,300);// set the scenestage.setScene(scene);stage.show();}// Main Methodpublicstaticvoidmain(String args[]){// launch the applicationlaunch(args);}}Output:
- Java Program to create a Spotlight and add it to a rectangle and set the coordinates of the direction vector of light and color of light: In this program we will create a Rectangle named rectangle with specified height and width. We will also create a Light.Spot object named light. We will set the x, y, z values using setX(), setY() and setZ() function. The coordinate of the direction vector of light is set using setPointsAtX(), setPointsAtY() and setPointsAtX(), and specify the value of color using setColor() function Now create a lighting object and add the light object to lighting using setLight() function. We will set the Lighting effect to the Rectangle and add it to the scene and add the scene to the stage and call the show function to display the results.
// Java Program to create a Spot light// and add it to a rectangle and set the// coordinates of direction vector of// light and color of lightimportjavafx.application.Application;importjavafx.scene.Scene;importjavafx.scene.shape.Rectangle;importjavafx.scene.control.*;importjavafx.stage.Stage;importjavafx.scene.Group;importjavafx.scene.effect.Light.*;importjavafx.scene.effect.*;importjavafx.scene.paint.Color;publicclassSpot_2extendsApplication {// launch the applicationpublicvoidstart(Stage stage){// set title for the stagestage.setTitle("creating Light.Spot");// create Spot Light objectLight.Spot light =newLight.Spot();// set coordinate of direction// the vector of this lightlight.setPointsAtX(0);light.setPointsAtY(0);light.setPointsAtZ(-60);// set specular exponentlight.setSpecularExponent(2);// set color of lightlight.setColor(Color.RED);// set coordinateslight.setX(100);light.setY(100);light.setZ(200);// create a lightingLighting lighting =newLighting();// set Light of lightinglighting.setLight(light);// create a rectangleRectangle rect =newRectangle(250,250);// set fillrect.setFill(Color.WHITE);// set effectrect.setEffect(lighting);// create a GroupGroup group =newGroup(rect);// create a sceneScene scene =newScene(group,500,300);// set the scenestage.setScene(scene);stage.show();}// Main Methodpublicstaticvoidmain(String args[]){// launch the applicationlaunch(args);}}Output:
Note: The above programs might not run in an online IDE. Please use an offline compiler.
Reference: https://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/Light.Spot.html




