📖 INDEX
LOADING ENGINE...
OrthographicCamera
THREE.JS REFERENCE // orthographiccamera
Camera that uses orthographic projection.
Syntax
const camera = new THREE.OrthographicCamera(left, right, top, bottom, near, far);Examples
Example 01Basic Usage
const camera = new THREE.OrthographicCamera(left, right, top, bottom, near, far);Best Practices
- Consult the official Three.js documentation for deeper understanding.
- Be mindful of performance when creating many objects or geometries.