| 123456789101112131415161718192021222324 |
- /**
- * @author mrdoob / http://mrdoob.com/
- */
- import { PerspectiveCamera } from './PerspectiveCamera';
- function ArrayCamera( array ) {
- PerspectiveCamera.call( this );
- this.cameras = array || [];
- }
- ArrayCamera.prototype = Object.assign( Object.create( PerspectiveCamera.prototype ), {
- constructor: ArrayCamera,
- isArrayCamera: true
- } );
- export { ArrayCamera };
|