如何使用带有THREE.js的javascript构建3D立方体(没有框/立方体几何体)?

时间:2015-11-07 09:26:22

标签: javascript 3d three.js

这就是我所拥有的。立方体的几何体。我弄乱了进入面孔。我的项目是JSFiddle上的Bizzare wall。还有什么是进行轮换的好方法?我在我的项目中使用的是由于旋转而使我的墙分开。感谢您的帮助。

function initGeom(){
/**TODO: optimize, to keep it simple in my mind I 
pictured divided the cube into six squares but
I duplicated some of the vertices.
*/

var cubeGeom = new THREE.Geometry();
var verts = [//front
            new THREE.Vector3(0,0,0),//0
            new THREE.Vector3(cubeSize,0,0),//1
            new THREE.Vector3(cubeSize,cubeSize,0),//2
            new THREE.Vector3(0,cubeSize,0),//3
            //back
            new THREE.Vector3(0,0,cubeSize),//4
            new THREE.Vector3(cubeSize,0,cubeSize),//5
            new THREE.Vector3(cubeSize,cubeSize,cubeSize),//6
            new THREE.Vector3(0,cubeSize,cubeSize)//7
            ];//15


var faces = [//===Face1===(front)WORKS!
            new THREE.Face3( 0, 3, 2),//Top Left Tri 2,3,0
            new THREE.Face3( 2, 1, 0),//Bottom Right Tri 0,1,2
            //===Face2===(right)// WORKS!
            new THREE.Face3( 5, 1, 2),//Top Left Tri 2,1,5
            new THREE.Face3( 2, 6, 5),//Bottom Right Tri 5,2,6
            //===Face5(Left)===WORKS!
            new THREE.Face3(0, 4, 7),//Top Right Tri 7,4,0
            new THREE.Face3(7, 3, 0),//Top Right Tri 0,3,7
            //===Face3===(top)//WORKS!
            new THREE.Face3( 2, 3, 7),//Top Left Tri 7, 3, 2
            new THREE.Face3( 7, 6, 2),//Bottom Right Tri 2,6,7
            //===Face 6(bottom)===(optimized) go back to
            new THREE.Face3(1, 0, 4),//Left tri 0,3,6
            new THREE.Face3(6, 4, 0),//Right tri 6,4,0
            //===Face4(back)===//some how is the front?
            new THREE.Face3(4, 5, 6),//bottomLeft Tri 6,5,4
            new THREE.Face3(6,7, 4), //Top Right Tri  4,7,6
            ];


cubeGeom.vertices = verts;
cubeGeom.faces = faces;

//scene.add(cubeMesh);
return cubeGeom;

}

1 个答案:

答案 0 :(得分:0)

您是否有理由不想使用现有的THREE.BoxGeometry?旋转对象的最简单方法是使用网格的rotateOnAxis方法。