📖 INDEX
LOADING ENGINE...
PlaneGeometry
THREE.JS REFERENCE // planegeometry
A class for generating plane geometries.
Syntax
const geometry = new THREE.PlaneGeometry(1, 1);Examples
Example 01Basic Usage
const geometry = new THREE.PlaneGeometry(1, 1);Best Practices
- Consult the official Three.js documentation for deeper understanding.
- Be mindful of performance when creating many objects or geometries.