0

Rotating a Pane around the z-axis (pointing outwards the screen) works just fine, however rotating it around the y-axis or x-axis in a 3D scene doesn't render it completly. For example:

BoderPane b = new BorderPane();
b.getTransforms().add(new Rotate(180, Rotate.X_AXIS));

I'm trying to display text in bordered panels in a 3D scene. So I would welcome any solution to this problem even if it doesn't involve Pane classes. Like printing text and borders on Box shape surfaces. (Text changing dynamically.)

José Pereda
  • 44,311
  • 7
  • 104
  • 132
Terran
  • 1,091
  • 18
  • 29

1 Answers1

1

You can try 8u40, it has been fixed.

This is the sample from this question, adding this rotation:

boderPane.getTransforms().add(new Rotate(180, Rotate.X_AXIS));

border pane

Community
  • 1
  • 1
José Pereda
  • 44,311
  • 7
  • 104
  • 132