source: other-projects/playing-in-the-street/summer-2013/trunk/Playing-in-the-Street-WPF/Content/Web/mrdoob-three.js-4862f5f/src/renderers/WebGLRenderTargetCube.js@ 28897

Last change on this file since 28897 was 28897, checked in by davidb, 10 years ago

GUI front-end to server base plus web page content

File size: 350 bytes
Line 
1/**
2 * @author alteredq / http://alteredqualia.com
3 */
4
5THREE.WebGLRenderTargetCube = function ( width, height, options ) {
6
7 THREE.WebGLRenderTarget.call( this, width, height, options );
8
9 this.activeCubeFace = 0; // PX 0, NX 1, PY 2, NY 3, PZ 4, NZ 5
10
11};
12
13THREE.WebGLRenderTargetCube.prototype = Object.create( THREE.WebGLRenderTarget.prototype );
Note: See TracBrowser for help on using the repository browser.