📖 INDEX
LOADING ENGINE...
Vector4
THREE.JS REFERENCE // vector4
Class representing a 4D vector.
Syntax
const v = new THREE.Vector4(1, 2, 3, 4);Examples
Example 01Basic Usage
const v = new THREE.Vector4(1, 2, 3, 4);Best Practices
- Consult the official Three.js documentation for deeper understanding.
- Be mindful of performance when creating many objects or geometries.