Experiments With JavaFX 3D Scenes

Experiments With JavaFX 3D Scenes

By Weiqi Gao, OCI Principal Software Engineer

May 2012


Introduction

JavaFX is the next step in the evolution of Java as a rich client platform. Announced in 2007, JavaFX 1.0 was delivered in 2008 with a domain specific language for GUI construction called JavaFX Script as the entry point to the JavaFX runtime. A major shift in strategy away from the JavaFX Script language in favor of a set of plain Java APIs was announces in 2010 and delivered in 2011 as JavaFX 2.0. This move made JavaFX easily available to all Java programmers as well as programmers of other JVM languages such as Scala, Groovy, Clojure, and Jython. The JavaFX Script language was deemphasized by the JavaFX team at Oracle, but is picked up by the open source community under the new name Visage.

Since JavaFX 2.0, the JavaFX team has announced the intention to open source the JavaFX technology and indeed several subsystems, including the controls library, has already been contributed to the openjfx project under the OpenJDK umbrella project. It has further been announced that JavaFX technology will be integrated into the upcoming Java 8 release. As a consequence, JavaFX will become the focal point of rich client application development for the Java platform.

JavaFX 2.1 was released on April 26, 2012, just as I was reviewing the final draft of this article. This release brings in Max OS X as a supported operating system for JavaFX. This release coincides with the release of JDK 7 Update 4, which also added Max OS X support. What is more, the JavaFX 2.1 SDK is included in the JDK 7 Update 4 installation for both Windows and Mac OS X.

Key innovations of the JavaFX technology include its hardware accelerated graphics system, its media support, its properties and bindings framework, its HTML5 support through the Webkit based WebEngine and WebView, and its animation framework. Most of these are well covered in the JavaFX online documentation, the two books on JavaFX 2.x so far—JavaFX 2.0 Introduction by Example by Carl Dea, and Pro JavaFX 2 by James Weaver, myself, Stephen Chin, Dean Iverson and Johan Vos—and the popular JavaFX blogs.

In this short article, I will explore an area of JavaFX 2.x that is not as well covered as the other popular features such as the properties and bindings framework or the animation framework, but nevertheless is just as fascinating and is capable of creating beautiful visual displays. This area is JavaFX 3D scenes. I will show you JavaFX 3D scenes in action through a series of simple examples. And along the way I will explain some of the other JavaFX features I employed in the examples, including the use of the JavaFX 2.x builders, properties and bindings, and animations.

Setting Up a JavaFX 2 Development Environment

The development environment for JavaFX 2.x consists of a supported operating system, the JDK, the JavaFX SDK, and a Java IDE. Windows is supported since JavaFX 2.0. Mac OS X support is added in the just released JavaFX 2.1. Linux support is available as a developer preview in JavaFX 2.1 and 2.2, and will go GA in JavaFX 2.2 later in 2012.

My setup for writing this article is a Mac mini running Mac OS X Lion, JDK 1.6.0_31 for Mac OS X, JavaFX 2.2 SDK developer preview build b04, and IntelliJ IDEA 11.1.1. I setup a normal Java project in the IDE and add the JavaFX runtime jar, found in rt/lib/jfxrt.jar under the JavaFX SDK installation directory, as a dependency. After the JDK 7 Update 4 and JavaFX 2.1 release, I tested all the programs in JDK 7 Update 4 and everything worked. With JDK 7 Update 4, you don't need a separate JavaFX download.

To verify that my environment works, I compiled and ran the following small program:

  1. package com.ociweb.sett.javafx;
  2.  
  3. import javafx.animation.KeyFrame;
  4. import javafx.animation.KeyValue;
  5. import javafx.animation.Timeline;
  6. import javafx.animation.TimelineBuilder;
  7. import javafx.application.Application;
  8. import javafx.beans.property.DoubleProperty;
  9. import javafx.beans.property.SimpleDoubleProperty;
  10. import javafx.scene.GroupBuilder;
  11. import javafx.scene.Parent;
  12. import javafx.scene.Scene;
  13. import javafx.scene.SceneBuilder;
  14. import javafx.scene.paint.Color;
  15. import javafx.scene.shape.Rectangle;
  16. import javafx.scene.shape.RectangleBuilder;
  17. import javafx.stage.Stage;
  18. import javafx.util.Duration;
  19.  
  20. public class HelloJavaFX extends Application {
  21. private DoubleProperty translate = new SimpleDoubleProperty();
  22.  
  23. public static void main(String[] args) {
  24. launch(args);
  25. }
  26.  
  27. @Override
  28. public void start(Stage stage) {
  29. stage.setTitle("Hello JavaFX");
  30. stage.setScene(makeScene());
  31. stage.show();
  32. animate();
  33. }
  34.  
  35. private Scene makeScene() {
  36. return SceneBuilder.create()
  37. .width(500)
  38. .height(500)
  39. .root(createRoot())
  40. .build();
  41. }
  42.  
  43. private Parent createRoot() {
  44. Rectangle node1 = RectangleBuilder.create()
  45. .x(0)
  46. .y(0)
  47. .width(10)
  48. .height(10)
  49. .fill(Color.RED)
  50. .build();
  51.  
  52. Rectangle node2 = RectangleBuilder.create()
  53. .x(0)
  54. .y(0)
  55. .width(10)
  56. .height(10)
  57. .fill(Color.GREEN)
  58. .build();
  59.  
  60. Rectangle node3 = RectangleBuilder.create()
  61. .x(0)
  62. .y(0)
  63. .width(10)
  64. .height(10)
  65. .fill(Color.BLUE)
  66. .build();
  67.  
  68. node1.translateXProperty().bind(translate);
  69. node2.translateYProperty().bind(translate);
  70. node3.translateZProperty().bind(translate);
  71.  
  72. return GroupBuilder.create()
  73. .children(node1, node2, node3)
  74. .translateX(250)
  75. .translateY(250)
  76. .build();
  77. }
  78.  
  79. private void animate() {
  80. TimelineBuilder.create()
  81. .cycleCount(Timeline.INDEFINITE)
  82. .keyFrames(
  83. new KeyFrame(
  84. Duration.seconds(0),
  85. new KeyValue(translate, -250)
  86. ),
  87. new KeyFrame(
  88. Duration.seconds(2),
  89. new KeyValue(translate, 250)
  90. )
  91. )
  92. .build().play();
  93. }
  94. }
Figure 1

Before I point out which line of code uses 3D features of JavaFX, let me briefly explain some basic JavaFX application code idioms.

The Application class
The Application class provides the application lifecycle methods init()start(Stage), and stop(). Only start(Stage) is abstract and must be overridden. This method injects a Stage into the application. Stage is an application window.
launch(args) in main()
launch(String[]) is a static method in Application. It will get the JavaFX rumtine going, and eventually calls start(Stage) on the GUI thread named "JavaFX Application Thread"
The builder classes
JavaFX provides builder classes for many types of objects that you may want to create. The builder code
RectangleBuilder.create()
    .x(0)
    .y(0)
    .width(10)
    .height(10)
    .fill(Color.RED)
    .build();

is equivalent to the "normal" code

Rectangle node1 = new Rectangle();
node1.setX(0);
node1.setY(0);
node1.setWidth(10);
node1.setHeight(10);
node1.setFill(Color.RED);
The builder code is more concise and is more descriptive than normal code, especially code that calls a constructor with unnamed parameters.
Properties
JavaFX properties and bindings framework is the most fun part of JavaFX code. It allows a property of one object to be bound to another property somewhere else so that whenever the latter changes, the former is notified and, at the appropriate time, updated.
Animation
JavaFX supports key frame animations, which allows you to specify the value of a property at certain specified time points. The JavaFX animation framework interpolates the values of the property at intermediate times.

The HelloJavaFX program will create a window of size 500×500, and three small rectangles of size 10×10: one red, one green, and one blue. The translateXProperty of the red rectangle, the translateYProperty of the green rectangle, and the translateZProperty of the blue rectangle are bound to the same DoubleProperty called translate. The translate property is then animated for a duration of 2 seconds with two key frames: at time 0, the value of translate is -250; at time 2 seconds, the value of translate is 250. The three rectangles as a whole is translated 250 along the x-axis, and 250 along the y-axis, just so that we can see the rectangles when their coordinates are negative.

3D Scenes in JavaFX

For readers who ask "Where is the 3D code?" It's this line:

node3.translateZProperty().bind(translate);

Even though node3 is a two-dimensional rectangle, you can manipulate its coordinates in three-dimensional space. Two-dimensional objects manipulated in three-dimensional space, that is the state of 3D scenes in JavaFX. Full 3D objects are in the roadmap for future versions of JavaFX.

"But the blue rectangle did not move at all. And the scene definitely looks two-dimensional." It looks two-dimensional because of two things: we are looking at the scene in the z-axis direction, and we are using a parallel camera. Every scene has a camera. It defaults to a parallel camera, which renders objects at the same size regardless of its distance from the viewer. Let's put a PerspectiveCamera on the scene:

private Scene makeScene() {
    return SceneBuilder.create()
        .width(500)
        .height(500)
        .root(createRoot())
        .camera(PerspectiveCameraBuilder.create()
            .build())
        .build();
}

[video functionality removed since original publication]

Even though the blue rectangle still only occupies the center of the screen, its size does change from larger to smaller as its z coordinate is translated from -250 to 250. Since under a perspective camera, nearer object looks bigger, we can conclude that the positive z-axis direction is pointing into the screen and away from the viewer. Together with the observation that the red rectangle animates from the left of the window towards the right of the window, and that the green rectangle animates from the top of the window towards the bottom of the window, we infer the orientation of the coordinate system to be: x increases from left to right, y increases from top to bottom, and z increases from closer to the viewer to further away from the viewer. This gives us a right-hand orientation of the three-dimensional space: if you stretch out the first three fingers of your right hand, and point your thumb along the positive x-axis and your index finger along the positive y-axis, then your middle finger points to the positive z-axis.

If you do not see the changing size of the blue rectangle after adding a perspective camera to the scene, the graphics card on your computer may not be one supported by JavaFX. This line of code:

Platform.isSupported(ConditionalFeature.SCENE3D)

will return true if your hardware supports 3D scenes. The rest of this article depends on your hardware supporting 3D scenes.

The Depth Buffer

Without any further transforms, all JavaFX on screen objects such as controls and shapes fall on the xy-plane where the z coordinate is 0. Normally, these objects are drawn in the order in which they are put into the scene, and later added objects will obscure earlier added ones.

  1. package com.ociweb.sett.javafx;
  2.  
  3. import javafx.application.Application;
  4. import javafx.scene.GroupBuilder;
  5. import javafx.scene.Parent;
  6. import javafx.scene.PerspectiveCameraBuilder;
  7. import javafx.scene.Scene;
  8. import javafx.scene.SceneBuilder;
  9. import javafx.scene.paint.Color;
  10. import javafx.scene.shape.Rectangle;
  11. import javafx.scene.shape.RectangleBuilder;
  12. import javafx.stage.Stage;
  13.  
  14. public class DepthBuffer extends Application {
  15. public static void main(String[] args) {
  16. launch(args);
  17. }
  18.  
  19. @Override
  20. public void start(Stage stage) {
  21. stage.setTitle("Depth Buffer");
  22. stage.setScene(makeScene());
  23. stage.show();
  24. }
  25.  
  26. private Scene makeScene() {
  27. return SceneBuilder.create()
  28. .width(500)
  29. .height(500)
  30. .root(createRoot())
  31. .camera(PerspectiveCameraBuilder.create()
  32. .build())
  33. .build();
  34. }
  35.  
  36. private Parent createRoot() {
  37. Rectangle node1 = RectangleBuilder.create()
  38. .x(-150)
  39. .y(-150)
  40. .width(200)
  41. .height(200)
  42. .fill(Color.RED)
  43. .build();
  44.  
  45. Rectangle node2 = RectangleBuilder.create()
  46. .x(-100)
  47. .y(-100)
  48. .width(200)
  49. .height(200)
  50. .fill(Color.GREEN)
  51. .build();
  52.  
  53. Rectangle node3 = RectangleBuilder.create()
  54. .x(-50)
  55. .y(-50)
  56. .width(200)
  57. .height(200)
  58. .fill(Color.BLUE)
  59. .build();
  60.  
  61. return GroupBuilder.create()
  62. .children(node1, node2, node3)
  63. .translateX(250)
  64. .translateY(250)
  65. .build();
  66. }
  67. }
Figure 2

This is only slightly different from the previous experiment. We changed the size and location of the red, green and blue rectangles so that they are bigger and overlapping. Since order of the three rectangles in the container is node1, node2, node3, the green rectangle obscures a portion of the red rectangle, and the blue one obscures a portion of the green one. The scene will be drawn differently if we add the rectangles in a different order:

return GroupBuilder.create()
    .children(node3, node2, node1)
    .translateX(250)
    .translateY(250)
    .build();
Figure 3

Now we revert the order back to node1, node2, node3 and change the z coordinates of the three rectangles so that the red rectangle is at z = -100, the green one remains at z = 0, and the blue one is at z = 100.

Rectangle node1 = RectangleBuilder.create()
    .x(-150)
    .y(-150)
    .translateZ(-100)
    .width(200)
    .height(200)
    .fill(Color.RED)
    .build();
 
Rectangle node2 = RectangleBuilder.create()
    .x(-100)
    .y(-100)
    .width(200)
    .height(200)
    .fill(Color.GREEN)
    .build();
 
Rectangle node3 = RectangleBuilder.create()
    .x(-50)
    .y(-50)
    .translateZ(100)
    .width(200)
    .height(200)
    .fill(Color.BLUE)
    .build();
Figure 4

Build and run the program and you will see the red rectangle becoming bigger because it is closer to the viewer, the green rectangle remaining the same size, and the blue one becoming smaller because it is further away from the viewer. However, contrary to our intuition, the green rectangle still obscures a portion of the red one, and the blue one the green.

To fix this problem, we must tell the scene to use the depth buffer, which will cause the objects to be drawn by their distance from the viewer. Further away objects will be drawn first, and nearer objects will be drawn later.

It is easy enough to enable the depth buffer on the scene:

private Scene makeScene() {
    return SceneBuilder.create()
        .width(500)
        .height(500)
        .root(createRoot())
        .camera(PerspectiveCameraBuilder.create()
            .build())
        .depthBuffer(true)
        .build();
}
Figure 5

Now the scene looks realistic. We can animate the z coordinates of the three rectangles so that their z-ordering changes during the animation to see one rectangle jumps in front another. To do that, we add property fields to the class:

public class DepthBuffer extends Application {
    private DoubleProperty translateZForNode1 = new SimpleDoubleProperty();
        private DoubleProperty translateZForNode2 = new SimpleDoubleProperty();
        private DoubleProperty translateZForNode3 = new SimpleDoubleProperty();

trigger the animation from the start(Stage) method:

@Override
public void start(Stage stage) {
    stage.setTitle("Depth Buffer");
    stage.setScene(makeScene());
    stage.show();
    animate();
}

bind the translateZProperty's of the rectangles to the property fields:

node1.translateZProperty().bind(translateZForNode1);
    node2.translateZProperty().bind(translateZForNode2);
    node3.translateZProperty().bind(translateZForNode3);
 
return GroupBuilder.create()
    .children(node1, node2, node3)
    .translateX(250)
    .translateY(250)
    .build();
 

and implement the animate() method:

private void animate() {
    TimelineBuilder.create()
        .cycleCount(Timeline.INDEFINITE)
        .autoReverse(true)
        .keyFrames(
            new KeyFrame(
                Duration.seconds(0),
                new KeyValue(translateZForNode1, -100),
                new KeyValue(translateZForNode2, -10),
                new KeyValue(translateZForNode3, 100)
            ),
            new KeyFrame(
                Duration.seconds(2),
                new KeyValue(translateZForNode1, 100),
                new KeyValue(translateZForNode2, 90),
                new KeyValue(translateZForNode3, -100)
            )
        )
        .build().play();
}

[video functionality removed since original publication]

3D Transforms

As I mentioned earlier, the power of JavaFX's 3D scenes comes from its 3D transforms. JavaFX's transforms consist of the most general Affine transform, and four special case transforms: TranslateScaleRotate, and Shear. You have seen plenty of Translate's in the last section. They move objects in a particular direction. Scale expands or contracts an object by an factor. Both Translate's and Scale's are easy to imagine.

Rotate transforms have the most dramatic effect on the scene as it rotates the scene about a straight line. When you apply a Rotate transform to an object, it rotates the object around its center. You can also specify a different pivot point to rotate around. For 2D rotations, you need to specify an angle of rotation in degrees and the object will be rotated around the pivot point in a clockwise direction. For 3D rotations, you also need to specify a rotation axis. The rotation axis is represented by a Point3D object. The rotation will be done around a straight line in the 3-dimensional space that passes through the pivot point and points in the direction of the axis vector. The direction of the rotation follow the right-hand rule: Stretch out your thumb and bend your four fingers as if to grab something, if you point your thumb in the direction of the axis, then your four fingers will point to the direction of the rotation.

Here is an example of a Rotate transform:

Rotate rotate = RotateBuilder.create()
    .angle(60)
    .pivotX(0)
    .pivotY(0)
    .pivotZ(0)
    .axis(new Point3D(1, 0, 0))
    .build();

This Rotate transform will cause the object it is applied to to rotate around the x-axis by 60°.

The experiment of this section is a slight modification of the experiment from the last section. I have changed the colored rectangles into colored circles to stop you from being bored. I have also added a Rotate transform that is applied to the root, which is a Group that contains all three circles. This causes them to be rotated as a combined unit. I have added another property that is used to animate the rotation.

  1. package com.ociweb.sett.javafx;
  2.  
  3. import javafx.animation.KeyFrame;
  4. import javafx.animation.KeyValue;
  5. import javafx.animation.Timeline;
  6. import javafx.animation.TimelineBuilder;
  7. import javafx.application.Application;
  8. import javafx.beans.property.DoubleProperty;
  9. import javafx.beans.property.SimpleDoubleProperty;
  10. import javafx.geometry.Point3D;
  11. import javafx.scene.GroupBuilder;
  12. import javafx.scene.Parent;
  13. import javafx.scene.PerspectiveCameraBuilder;
  14. import javafx.scene.Scene;
  15. import javafx.scene.SceneBuilder;
  16. import javafx.scene.paint.Color;
  17. import javafx.scene.shape.Circle;
  18. import javafx.scene.shape.CircleBuilder;
  19. import javafx.scene.transform.Rotate;
  20. import javafx.scene.transform.RotateBuilder;
  21. import javafx.stage.Stage;
  22. import javafx.util.Duration;
  23.  
  24. public class Rotations extends Application {
  25. private DoubleProperty translateZForNode1 = new SimpleDoubleProperty();
  26. private DoubleProperty translateZForNode2 = new SimpleDoubleProperty();
  27. private DoubleProperty translateZForNode3 = new SimpleDoubleProperty();
  28. <strong>private DoubleProperty angle = new SimpleDoubleProperty();</strong>
  29.  
  30. public static void main(String[] args) {
  31. launch(args);
  32. }
  33.  
  34. @Override
  35. public void start(Stage stage) {
  36. stage.setTitle("Rotations");
  37. stage.setScene(makeScene());
  38. stage.show();
  39. animate();
  40. }
  41.  
  42. private Scene makeScene() {
  43. return SceneBuilder.create()
  44. .width(500)
  45. .height(500)
  46. .root(createRoot())
  47. .camera(PerspectiveCameraBuilder.create()
  48. .build())
  49. .depthBuffer(true)
  50. .build();
  51. }
  52.  
  53. private Parent createRoot() {
  54. <strong>Circle node1 = CircleBuilder.create()
  55. .centerX(-50)
  56. .centerY(-50)
  57. .radius(100)
  58. .fill(Color.RED)
  59. .build();</strong>
  60.  
  61. <strong>Circle node2 = CircleBuilder.create()
  62. .centerX(0)
  63. .centerY(0)
  64. .radius(100)
  65. .fill(Color.GREEN)
  66. .build();</strong>
  67.  
  68. <strong>Circle node3 = CircleBuilder.create()
  69. .centerX(50)
  70. .centerY(50)
  71. .radius(100)
  72. .fill(Color.BLUE)
  73. .build();</strong>
  74.  
  75. node1.translateZProperty().bind(translateZForNode1);
  76. node2.translateZProperty().bind(translateZForNode2);
  77. node3.translateZProperty().bind(translateZForNode3);
  78.  
  79. <strong>final Rotate rotate = RotateBuilder.create()
  80. .pivotX(0)
  81. .pivotY(0)
  82. .pivotZ(0)
  83. .axis(new Point3D(1, 0, 0))
  84. .build();
  85. rotate.angleProperty().bind(angle);</strong>
  86.  
  87. return GroupBuilder.create()
  88. .children(node1, node2, node3)
  89. .translateX(250)
  90. .translateY(250)
  91. <strong>.transforms(rotate)</strong>
  92. .build();
  93. }
  94.  
  95. private void animate() {
  96. TimelineBuilder.create()
  97. .cycleCount(Timeline.INDEFINITE)
  98. .keyFrames(
  99. new KeyFrame(
  100. Duration.seconds(0),
  101. new KeyValue(translateZForNode1, -100),
  102. new KeyValue(translateZForNode2, -10),
  103. new KeyValue(translateZForNode3, 100),
  104. <strong>new KeyValue(angle, 0)</strong>
  105. ),
  106. new KeyFrame(
  107. Duration.seconds(2),
  108. new KeyValue(translateZForNode1, 100),
  109. new KeyValue(translateZForNode2, 90),
  110. new KeyValue(translateZForNode3, -100),
  111. <strong>new KeyValue(angle, 180)</strong>
  112. ),
  113. <strong>new KeyFrame(
  114. Duration.seconds(4),
  115. new KeyValue(translateZForNode1, -100),
  116. new KeyValue(translateZForNode2, -10),
  117. new KeyValue(translateZForNode3, 100),
  118. new KeyValue(angle, 360)
  119. )</strong>
  120.  
  121. )
  122. .build().play();
  123. }
  124. }

[video functionality removed since original publication]

Build and run the program and you will see the animation that you saw in the last section, compounded with a rotation of the whole scene around the x-axis. The motion of the objects is like the wheel of a car that is driving towards you. Dodge!

We can change the axis of the Rotate transform to that of the y-axis, represented by the directional vector (0, 1, 0):

final Rotate rotate = RotateBuilder.create()
    .pivotX(0)
    .pivotY(0)
    .pivotZ(0)
    .axis(new Point3D(0, 1, 0))
    .build();
rotate.angleProperty().bind(angle);

[video functionality removed since original publication]

This time the rotation will be around the y-axis. As a matter of fact, the Rotate class has constants X_AXISY_AXIS, and Z_AXIS that you can use in this situation. The above snippet of code is equivalent to:

final Rotate rotate = RotateBuilder.create()
    .pivotX(0)
    .pivotY(0)
    .pivotZ(0)
    .axis(Rotate.Y_AXIS)
    .build();
rotate.angleProperty().bind(angle);
 

Notice that in the midst of all the animated translations and rotation the depth buffer worked flawlessly. Objects closer to us always obscure objects further away, never the other way around.

3D Objects

All the experiments that you have seen so far feels a little bit "flat." And that is because the three rectangles or the three circles that we dealt with are all parallel to each other. Rotate them about different axis, and they will form the surface of a 3D looking solid. Here's a cube, obtained from six squares each of a different color and each of which undergoes a different transform. In the beginning, all six sides were at the same position, but one by one, the side animates to their final position in the cube:

  1. package com.ociweb.sett.javafx;
  2.  
  3. import javafx.animation.KeyFrame;
  4. import javafx.animation.KeyValue;
  5. import javafx.animation.TimelineBuilder;
  6. import javafx.application.Application;
  7. import javafx.beans.property.DoubleProperty;
  8. import javafx.beans.property.SimpleDoubleProperty;
  9. import javafx.geometry.Point3D;
  10. import javafx.scene.GroupBuilder;
  11. import javafx.scene.Parent;
  12. import javafx.scene.PerspectiveCameraBuilder;
  13. import javafx.scene.Scene;
  14. import javafx.scene.SceneBuilder;
  15. import javafx.scene.paint.Color;
  16. import javafx.scene.shape.Rectangle;
  17. import javafx.scene.shape.RectangleBuilder;
  18. import javafx.scene.transform.Rotate;
  19. import javafx.scene.transform.RotateBuilder;
  20. import javafx.stage.Stage;
  21. import javafx.util.Duration;
  22.  
  23. public class Cube extends Application {
  24. private DoubleProperty side2Angle = new SimpleDoubleProperty();
  25. private DoubleProperty side3Angle = new SimpleDoubleProperty();
  26. private DoubleProperty side4Angle = new SimpleDoubleProperty();
  27. private DoubleProperty side5Angle = new SimpleDoubleProperty();
  28. private DoubleProperty side6TranslateZ = new SimpleDoubleProperty();
  29.  
  30. public static void main(String[] args) {
  31. launch(args);
  32. }
  33.  
  34. @Override
  35. public void start(Stage stage) {
  36. stage.setTitle("Cube");
  37. stage.setScene(makeScene());
  38. stage.show();
  39. animate();
  40. }
  41.  
  42. private Scene makeScene() {
  43. return SceneBuilder.create()
  44. .width(500)
  45. .height(500)
  46. .root(createRoot())
  47. .camera(PerspectiveCameraBuilder.create()
  48. .build())
  49. .depthBuffer(true)
  50. .build();
  51. }
  52.  
  53. private Parent createRoot() {
  54. final Rectangle side1 = RectangleBuilder.create()
  55. .x(-100)
  56. .y(-100)
  57. .width(200)
  58. .height(200)
  59. .fill(Color.RED)
  60. .build();
  61.  
  62. final Rotate side2Rotate = RotateBuilder.create()
  63. .pivotX(-100)
  64. .pivotY(-100)
  65. .pivotZ(0)
  66. .axis(Rotate.Y_AXIS)
  67. .build();
  68. side2Rotate.angleProperty().bind(side2Angle);
  69.  
  70. final Rectangle side2 = RectangleBuilder.create()
  71. .x(-100)
  72. .y(-100)
  73. .width(200)
  74. .height(200)
  75. .fill(Color.GREEN)
  76. .transforms(side2Rotate)
  77. .build();
  78.  
  79. final Rotate side3Rotate = RotateBuilder.create()
  80. .pivotX(100)
  81. .pivotY(-100)
  82. .pivotZ(0)
  83. .axis(new Point3D(-1, 0, 0))
  84. .build();
  85. side3Rotate.angleProperty().bind(side3Angle);
  86.  
  87. final Rectangle side3 = RectangleBuilder.create()
  88. .x(-100)
  89. .y(-100)
  90. .width(200)
  91. .height(200)
  92. .fill(Color.BLUE)
  93. .transforms(side3Rotate)
  94. .build();
  95.  
  96. final Rotate side4Rotate = RotateBuilder.create()
  97. .pivotX(100)
  98. .pivotY(100)
  99. .pivotZ(0)
  100. .axis(new Point3D(0, -1, 0))
  101. .build();
  102. side4Rotate.angleProperty().bind(side4Angle);
  103.  
  104. final Rectangle side4 = RectangleBuilder.create()
  105. .x(-100)
  106. .y(-100)
  107. .width(200)
  108. .height(200)
  109. .fill(Color.CYAN)
  110. .transforms(side4Rotate)
  111. .build();
  112.  
  113. final Rotate side5Rotate = RotateBuilder.create()
  114. .pivotX(-100)
  115. .pivotY(100)
  116. .pivotZ(0)
  117. .axis(Rotate.X_AXIS)
  118. .build();
  119. side5Rotate.angleProperty().bind(side5Angle);
  120.  
  121. final Rectangle side5 = RectangleBuilder.create()
  122. .x(-100)
  123. .y(-100)
  124. .width(200)
  125. .height(200)
  126. .fill(Color.MAGENTA)
  127. .transforms(side5Rotate)
  128. .build();
  129.  
  130. final Rectangle side6 = RectangleBuilder.create()
  131. .x(-100)
  132. .y(-100)
  133. .width(200)
  134. .height(200)
  135. .fill(Color.YELLOW)
  136. .build();
  137.  
  138. side6.translateZProperty().bind(side6TranslateZ);
  139.  
  140. return GroupBuilder.create()
  141. .children(side1, side6, side2, side3, side4, side5)
  142. .translateX(250)
  143. .translateY(250)
  144. .build();
  145. }
  146.  
  147. private void animate() {
  148. TimelineBuilder.create()
  149. .keyFrames(
  150. new KeyFrame(
  151. Duration.seconds(0),
  152. new KeyValue(side2Angle, 0),
  153. new KeyValue(side3Angle, 0),
  154. new KeyValue(side4Angle, 0),
  155. new KeyValue(side5Angle, 0),
  156. new KeyValue(side6TranslateZ, 0)
  157. ),
  158. new KeyFrame(
  159. Duration.seconds(1),
  160. new KeyValue(side2Angle, 0),
  161. new KeyValue(side3Angle, 0),
  162. new KeyValue(side4Angle, 0),
  163. new KeyValue(side5Angle, 90),
  164. new KeyValue(side6TranslateZ, 0)
  165. ),
  166. new KeyFrame(
  167. Duration.seconds(2),
  168. new KeyValue(side2Angle, 0),
  169. new KeyValue(side3Angle, 0),
  170. new KeyValue(side4Angle, 90),
  171. new KeyValue(side5Angle, 90),
  172. new KeyValue(side6TranslateZ, 0)
  173. ),
  174. new KeyFrame(
  175. Duration.seconds(3),
  176. new KeyValue(side2Angle, 0),
  177. new KeyValue(side3Angle, 90),
  178. new KeyValue(side4Angle, 90),
  179. new KeyValue(side5Angle, 90),
  180. new KeyValue(side6TranslateZ, 0)
  181. ),
  182. new KeyFrame(
  183. Duration.seconds(4),
  184. new KeyValue(side2Angle, 90),
  185. new KeyValue(side3Angle, 90),
  186. new KeyValue(side4Angle, 90),
  187. new KeyValue(side5Angle, 90),
  188. new KeyValue(side6TranslateZ, 0)
  189. ),
  190. new KeyFrame(
  191. Duration.seconds(5),
  192. new KeyValue(side2Angle, 90),
  193. new KeyValue(side3Angle, 90),
  194. new KeyValue(side4Angle, 90),
  195. new KeyValue(side5Angle, 90),
  196. new KeyValue(side6TranslateZ, -200)
  197. )
  198. )
  199. .build().play();
  200. }
  201. }

[video functionality removed since original publication]

Did you see it? Well, you can see the cube forming as it happens. But because of the viewing angle is directly over the cube, when the animation is done, all you see is the last face of the cube. To cure this dullness, we add a Rotate transform to the root of the scene graph and animate its angle as we form the cube. First we add a property:

public class Cube extends Application {
    private DoubleProperty side2Angle = new SimpleDoubleProperty();
    private DoubleProperty side3Angle = new SimpleDoubleProperty();
    private DoubleProperty side4Angle = new SimpleDoubleProperty();
    private DoubleProperty side5Angle = new SimpleDoubleProperty();
    private DoubleProperty side6TranslateZ = new SimpleDoubleProperty();
    private DoubleProperty rootAngle = new SimpleDoubleProperty();

Then we add a Rotate transform to root, binding its angleProperty to the property defined above:

final Rotate rootRotate = RotateBuilder.create()
    .pivotX(0)
    .pivotY(0)
    .pivotZ(-100)
    .axis(new Point3D(1, 1, 1))
    .build();
rootRotate.angleProperty().bind(rootAngle);
 
return GroupBuilder.create()
    .children(side1, side6, side2, side3, side4, side5)
    .translateX(250)
    .translateY(250)
    .translateZ(-100)
    .transforms(rootRotate)
    .build();

Notice that the pivot point of the rotation is the center of the cube, which is at (0, 0, -100). We also translated the root along the z-axis so that the rotation's center appears to be at the center of the screen.

Finally, we add rootRotate into the animation mix:

private void animate() {
    TimelineBuilder.create()
        .keyFrames(
            new KeyFrame(
                Duration.seconds(0),
                new KeyValue(side2Angle, 0),
                new KeyValue(side3Angle, 0),
                new KeyValue(side4Angle, 0),
                new KeyValue(side5Angle, 0),
                new KeyValue(side6TranslateZ, 0),
                new KeyValue(rootAngle, -30)
            ),
            new KeyFrame(
                Duration.seconds(1),
                new KeyValue(side2Angle, 0),
                new KeyValue(side3Angle, 0),
                new KeyValue(side4Angle, 0),
                new KeyValue(side5Angle, 90),
                new KeyValue(side6TranslateZ, 0),
                new KeyValue(rootAngle, 30)
            ),
            new KeyFrame(
                Duration.seconds(2),
                new KeyValue(side2Angle, 0),
                new KeyValue(side3Angle, 0),
                new KeyValue(side4Angle, 90),
                new KeyValue(side5Angle, 90),
                new KeyValue(side6TranslateZ, 0),
                new KeyValue(rootAngle, 90)
            ),
            new KeyFrame(
                Duration.seconds(3),
                new KeyValue(side2Angle, 0),
                new KeyValue(side3Angle, 90),
                new KeyValue(side4Angle, 90),
                new KeyValue(side5Angle, 90),
                new KeyValue(side6TranslateZ, 0),
                new KeyValue(rootAngle, 150)
            ),
            new KeyFrame(
                Duration.seconds(4),
                new KeyValue(side2Angle, 90),
                new KeyValue(side3Angle, 90),
                new KeyValue(side4Angle, 90),
                new KeyValue(side5Angle, 90),
                new KeyValue(side6TranslateZ, 0),
                new KeyValue(rootAngle, 210)
            ),
            new KeyFrame(
                Duration.seconds(5),
                new KeyValue(side2Angle, 90),
                new KeyValue(side3Angle, 90),
                new KeyValue(side4Angle, 90),
                new KeyValue(side5Angle, 90),
                new KeyValue(side6TranslateZ, -200),
                new KeyValue(rootAngle, 330)
            )
        )
        .build().play();
}

[video functionality removed since original publication]

Build and run the program and you will see the forming of the cube more clearly. If you have never done this sort of programs before, you have to admit it's pretty cool.

Platonic Solids

The cube is one of five Platonic solids. Platonic solids are regular convex polyhedrons whose faces are congruent regular polygons. There are five Platonic solids: the tetrahedron (4 faces, each a equilateral triangle), the hexahedron (or the cube, 6 faces, each a square), octahedron (8 faces, each a triangle), dodecahedron (12 faces, each a pentagon), and icosahedron (20 faces, each a triangle.)

Using the same trick from the last section we can construct the other Platonic solids. I'll show you a tetrahedron. The only difference between the tetrahedron and the cube is that instead of using six squares, we use four equilateral triangles, and instead of rotating the squares out by 90°, we rotate the triangles out by 70.53°—the dihedral angle of the tetrahedron.

  1. package com.ociweb.sett.javafx;
  2.  
  3. import javafx.animation.KeyFrame;
  4. import javafx.animation.KeyValue;
  5. import javafx.animation.TimelineBuilder;
  6. import javafx.application.Application;
  7. import javafx.beans.property.DoubleProperty;
  8. import javafx.beans.property.SimpleDoubleProperty;
  9. import javafx.geometry.Point3D;
  10. import javafx.scene.GroupBuilder;
  11. import javafx.scene.Parent;
  12. import javafx.scene.PerspectiveCameraBuilder;
  13. import javafx.scene.Scene;
  14. import javafx.scene.SceneBuilder;
  15. import javafx.scene.paint.Color;
  16. import javafx.scene.shape.Polygon;
  17. import javafx.scene.shape.PolygonBuilder;
  18. import javafx.scene.transform.Rotate;
  19. import javafx.scene.transform.RotateBuilder;
  20. import javafx.stage.Stage;
  21. import javafx.util.Duration;
  22.  
  23. public class Tetrahedron extends Application {
  24. public static final double DIHEDRAL_ANGLE = 70.53;
  25. public static final double INRADIUS = 50 * Math.tan(DIHEDRAL_ANGLE / 2 / 180 * Math.PI);
  26.  
  27. private DoubleProperty side2Angle = new SimpleDoubleProperty();
  28. private DoubleProperty side3Angle = new SimpleDoubleProperty();
  29. private DoubleProperty side4Angle = new SimpleDoubleProperty();
  30. private DoubleProperty rootAngle = new SimpleDoubleProperty();
  31.  
  32. public static void main(String[] args) {
  33. launch(args);
  34. }
  35.  
  36. @Override
  37. public void start(Stage stage) {
  38. stage.setTitle("Tetrahedron");
  39. stage.setScene(makeScene());
  40. stage.show();
  41. animate();
  42. }
  43.  
  44. private Scene makeScene() {
  45. return SceneBuilder.create()
  46. .width(500)
  47. .height(500)
  48. .root(createRoot())
  49. .camera(PerspectiveCameraBuilder.create()
  50. .build())
  51. .depthBuffer(true)
  52. .build();
  53. }
  54.  
  55. private Parent createRoot() {
  56. double x[] = new double[3];
  57. double y[] = new double[3];
  58. double angle = 2 * Math.PI / 3;
  59. for (int i = 0; i < 3; i++) {
  60. x[i] = 100 * Math.cos(i * angle);
  61. y[i] = 100 * Math.sin(i * angle);
  62. }
  63.  
  64. final Polygon side1 = PolygonBuilder.create()
  65. .points(x[0], y[0], x[1], y[1], x[2], y[2])
  66. .fill(Color.RED)
  67. .opacity(0.9)
  68. .build();
  69.  
  70. final Rotate side2Rotate = RotateBuilder.create()
  71. .pivotX(x[0])
  72. .pivotY(y[0])
  73. .pivotZ(0)
  74. .axis(new Point3D(x[0] - x[1], y[0] - y[1], 0))
  75. .build();
  76. side2Rotate.angleProperty().bind(side2Angle);
  77.  
  78. final Polygon side2 = PolygonBuilder.create()
  79. .points(x[0], y[0], x[1], y[1], x[2], y[2])
  80. .fill(Color.GREEN)
  81. .opacity(0.9)
  82. .transforms(side2Rotate)
  83. .build();
  84.  
  85. final Rotate side3Rotate = RotateBuilder.create()
  86. .pivotX(x[1])
  87. .pivotY(y[1])
  88. .pivotZ(0)
  89. .axis(new Point3D(x[1] - x[2], y[1] - y[2], 0))
  90. .build();
  91. side3Rotate.angleProperty().bind(side3Angle);
  92.  
  93. final Polygon side3 = PolygonBuilder.create()
  94. .points(x[0], y[0], x[1], y[1], x[2], y[2])
  95. .fill(Color.BLUE)
  96. .opacity(0.9)
  97. .transforms(side3Rotate)
  98. .build();
  99.  
  100. final Rotate side4Rotate = RotateBuilder.create()
  101. .pivotX(x[2])
  102. .pivotY(y[2])
  103. .pivotZ(0)
  104. .axis(new Point3D(x[2] - x[0], y[2] - y[0], 0))
  105. .build();
  106. side4Rotate.angleProperty().bind(side4Angle);
  107.  
  108. final Polygon side4 = PolygonBuilder.create()
  109. .points(x[0], y[0], x[1], y[1], x[2], y[2])
  110. .fill(Color.CYAN)
  111. .opacity(0.9)
  112. .transforms(side4Rotate)
  113. .build();
  114.  
  115.  
  116. final Rotate rootRotate = RotateBuilder.create()
  117. .pivotX(0)
  118. .pivotY(0)
  119. .pivotZ(-INRADIUS)
  120. .axis(new Point3D(1, 1, 1))
  121. .build();
  122. rootRotate.angleProperty().bind(rootAngle);
  123.  
  124. return GroupBuilder.create()
  125. .children(side1, side2, side3, side4)
  126. .translateX(250)
  127. .translateY(250)
  128. .translateZ(-INRADIUS)
  129. .transforms(rootRotate)
  130. .build();
  131. }
  132.  
  133. private void animate() {
  134. TimelineBuilder.create()
  135. .keyFrames(
  136. new KeyFrame(
  137. Duration.seconds(0),
  138. new KeyValue(side2Angle, 0),
  139. new KeyValue(side3Angle, 0),
  140. new KeyValue(side4Angle, 0),
  141. new KeyValue(rootAngle, -60)
  142. ),
  143. new KeyFrame(
  144. Duration.seconds(2),
  145. new KeyValue(side2Angle, 0),
  146. new KeyValue(side3Angle, 0),
  147. new KeyValue(side4Angle, DIHEDRAL_ANGLE),
  148. new KeyValue(rootAngle, 60)
  149. ),
  150. new KeyFrame(
  151. Duration.seconds(4),
  152. new KeyValue(side2Angle, 0),
  153. new KeyValue(side3Angle, DIHEDRAL_ANGLE),
  154. new KeyValue(side4Angle, DIHEDRAL_ANGLE),
  155. new KeyValue(rootAngle, 180)
  156. ),
  157. new KeyFrame(
  158. Duration.seconds(6),
  159. new KeyValue(side2Angle, DIHEDRAL_ANGLE),
  160. new KeyValue(side3Angle, DIHEDRAL_ANGLE),
  161. new KeyValue(side4Angle, DIHEDRAL_ANGLE),
  162. new KeyValue(rootAngle, 300)
  163. )
  164. )
  165. .build().play();
  166. }
  167. }

[video functionality removed since original publication]

Lighting, BoundingBoxes, and PerspectiveTransforms

There are a few more JavaFX features that interact well with 3D scenes. Lighting is an effect that can be applied to any Node. When applied to 3D objects, the effect is more dramatic.

Each JavaFX Node knows its bounds. As a matter of fact, each Node knows three bounds:boundsInLocalboundsInParent, and layoutBounds. The boundsInLocal takes into account only the geometry of the Node, but not any transforms. The boundsInParent does take into account of transforms. For example, the local bounds of a rectangle is just the rectangle itself. If you don't apply any transforms, the parent bounds is the same as the local bounds. However, if you do apply transforms, say, a Rotate of 45°, then the parent bounds will become bigger to accommodate the slanted rectangle. When a Node contains 3D objects, its bounds are also 3 dimensional.

The PerspectiveTransform class is not a Transform like TranslateScale, or Rotate. But rather it is an effect. And according to the javadoc, "Most typically PerspectiveTransform is used to provide a 'faux' three-dimensional effect for otherwise two-dimensional content."

Summary

As you can see from the experiments I made in this article, JavaFX 2.x contains easy to use facilities for building simple 3D scenes that can be used to produce quite interesting results. Although not everyone will be doing 3D scenes in JavaFX, many of JavaFX's other facilities are just as fun to use.

With JavaFX slated to be open sourced and to be tightly integrated with the JDK and JRE, it makes a lot of sense to familiarize your self with the JavaFX technologies, and have some fun while exploring them.

I would like to thank Stephen Chin, Carl Dea, and Brian Coyner for their help in reviewing this article.

References

secret