1234567891011 |
- /**
- * @author mrdoob / http://mrdoob.com/
- */
- THREE.CubeGeometry = function ( width, height, depth, widthSegments, heightSegments, depthSegments ) {
- THREE.warn( 'THREE.CubeGeometry has been renamed to THREE.BoxGeometry.' );
- return new THREE.BoxGeometry( width, height, depth, widthSegments, heightSegments, depthSegments );
- };
|