UNPKG

three

Version:

JavaScript 3D library

19 lines (9 loc) 252 B
import { PerspectiveCamera } from './PerspectiveCamera.js'; class ArrayCamera extends PerspectiveCamera { constructor( array = [] ) { super(); this.cameras = array; } } ArrayCamera.prototype.isArrayCamera = true; export { ArrayCamera };