content/hifi-content/dave/walk-tools/walkTools/libraries/three.js/extras/geometries/CubeGeometry.js
2022-02-13 22:49:05 +01:00

11 lines
335 B
JavaScript

/**
* @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 );
};