UNPKG

378 BJavaScriptView Raw
1/**
2 * @author mrdoob / http://mrdoob.com/
3 */
4
5import { PerspectiveCamera } from './PerspectiveCamera.js';
6
7function ArrayCamera( array ) {
8
9 PerspectiveCamera.call( this );
10
11 this.cameras = array || [];
12
13}
14
15ArrayCamera.prototype = Object.assign( Object.create( PerspectiveCamera.prototype ), {
16
17 constructor: ArrayCamera,
18
19 isArrayCamera: true
20
21} );
22
23
24export { ArrayCamera };