Skip to main content

Transform

Overview

Applies standard affine transformations—translation, rotation, and scaling—to an entire mesh.


Inputs

NameTypeDescription
InputMeshDataThe source mesh to be transformed.
TranslationVector3The distance to move the mesh along the X, Y, and Z axes.
RotationVector3The Euler angles (in degrees) to rotate the mesh.
ScaleVector3The scaling factor for each individual axis.
Uniform ScalefloatA global multiplier that scales all axes equally, compounded with Scale.

Outputs

NameTypeDescription
OutputMeshDataThe mesh data after the transformation has been applied.

Parameters

This node does not expose additional parameters.


Behavior Notes

  • Calculations follow the standard matrix order: Scale first, then Rotation, and finally Translation (TRS).