Basics
Guides
API Reference
Basics
Guides
API Reference
[12:7] extends: Transform
Wraps JavaFX Translate, a Transform that shifts a node by a fixed offset along the X, Y, and Z axes. Useful in both 2D and 3D scenes for moving nodes without changing their layout-managed position.
Translate (double X = 0.0, double Y = 0.0, double Z = 0.0)
Creates a new Translate with the given X, Y, and Z offsets.
X is a double with the X offset in pixels (or world units in 3D).Y is a double with the Y offset.Z is a double with the Z offset.setX (double X)
Sets the X offset.
X is a double with the new X offset.this objectsetY (double Y)
Sets the Y offset.
Y is a double with the new Y offset.this objectsetZ (double Z)
Sets the Z offset.
Z is a double with the new Z offset.this objectgetX ()
Returns the X offset.
A double with the X offset.getY ()
Returns the Y offset.
A double with the Y offset.getZ ()
Returns the Z offset.
A double with the Z offset.xProperty ()
Returns the property backing the X offset.
A DoubleProperty AJO.yProperty ()
Returns the property backing the Y offset.
A DoubleProperty AJO.zProperty ()
Returns the property backing the Z offset.
A DoubleProperty AJO.
Aussom
Write once. Embed everywhere.
Copyright 2026 Austin Lehman. All rights reserved.