RenderableSource.RecenterMode

  • RenderableSource.RecenterMode is an enum that defines how a 3D model's local origin is positioned relative to its geometry.

  • It offers three options: CENTER, ROOT, and NONE to control the placement of the origin.

  • CENTER positions the origin at the geometric center, ROOT places it at the base aligned with the horizontal center, and NONE applies no recentering.

  • This enum inherits standard methods from java.lang.Enum, java.lang.Object, and java.lang.Comparable for object manipulation and comparison.

public static final enum RenderableSource.RecenterMode

Recenter modes that control placement of the local origin with respect to the geometry.

Inherited Methods

Enum Values

public static final RenderableSource.RecenterMode CENTER

Local origin placed at the geometric center.

public static final RenderableSource.RecenterMode NONE

No recentering.

public static final RenderableSource.RecenterMode ROOT

Local origin placed at the base of the object aligned horizontally with the geometric center.