📖 INDEX
LOADING ENGINE...
AxesHelper
THREE.JS REFERENCE // axeshelper
An axis object to visualize the 3 axes in a simple way.
Syntax
const axesHelper = new THREE.AxesHelper(5);
scene.add(axesHelper);Examples
Example 01Basic Usage
const axesHelper = new THREE.AxesHelper(5);
scene.add(axesHelper);Best Practices
- Consult the official Three.js documentation for deeper understanding.
- Be mindful of performance when creating many objects or geometries.