PointLike
A 3D point used by operations like translate(). Any of the following formats are accepted:
| Format | Example | Description |
|---|---|---|
[number, number, number] | [10, 20, 30] | Tuple of x, y, z coordinates |
{ x, y, z } | { x: 10, y: 20, z: 30 } | Object with x, y, z properties |