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