示例
1 //创建几何体2 var planeGeometry = new THREE.PlaneGeometry(60,20,1,1);3 var planeMaterial = new THREE.MeshBasicMaterial({color:0xcccccc});4 var plane = new THREE.Mesh(planeGeometry,planeMaterial);
ThreeJS-几何体
原文地址:https://www.cnblogs.com/qhdxqxx/p/8438304.html