Transforms
Move, rotate, scale, and mirror shapes.
Position
shape.translate(x, y, z)
shape.translate_x(x)
shape.translate_y(y)
shape.translate_z(z)Rotation
// Angles in radians
shape.rotate_x(angle)
shape.rotate_y(angle)
shape.rotate_z(angle)
// Use deg() for degrees
shape.rotate_y(deg(45.0))Scale and Mirror
shape.scale(factor) // Uniform scale
shape.mirror_x() // Flip across YZ plane
shape.symmetry_x() // Fold space for symmetry