ThreeDimensionalShapesController.java// Fig. 22.15: ThreeDimensionalShapesController.java
// Setting the material displayed on 3D shapes.
import javafx.fxml.FXML;
import javafx.scene.paint.Color;
import javafx.scene.paint.PhongMaterial;
import javafx.scene.image.Image;
import javafx.scene.shape.Box;
import javafx.scene.shape.Cylinder;
import javafx.scene.shape.Sphere;
public class ThreeDimensionalShapesController {
// instance variables that refer to 3D shapes
@FXML private Box box;
@FXML private Cylinder cylinder;
@FXML private Sphere sphere;
// set the material for each 3D shape
public void initialize() {
// define material for the Box object
PhongMaterial boxMaterial = new PhongMaterial();
boxMaterial.setDiffuseColor(Color.CYAN);
box.setMaterial(boxMaterial);
// define material for the Cylinder object
PhongMaterial cylinderMaterial = new PhongMaterial();
cylinderMaterial.setDiffuseMap(new Image("yellowflowers.png"));
cylinder.setMaterial(cylinderMaterial);
// define material for the Sphere object
PhongMaterial sphereMaterial = new PhongMaterial();
sphereMaterial.setDiffuseColor(Color.RED);
sphereMaterial.setSpecularColor(Color.WHITE);
sphereMaterial.setSpecularPower(32);
sphere.setMaterial(sphereMaterial);
}
}
/**************************************************************************
* (C) Copyright 1992-2018 by Deitel & Associates, Inc. and *
* Pearson Education, Inc. All Rights Reserved. *
* *
* DISCLAIMER: The authors and publisher of this book have used their *
* best efforts in preparing the book. These efforts include the *
* development, research, and testing of the theories and programs *
* to determine their effectiveness. The authors and publisher make *
* no warranty of any kind, expressed or implied, with regard to these *
* programs or to the documentation contained in these books. The authors *
* and publisher shall not be liable in any event for incidental or *
* consequential damages in connection with, or arising out of, the *
* furnishing, performance, or use of these programs. *
*************************************************************************/
Maintained by John Loomis, updated Sat Feb 10 11:39:18 2018