Physijs物理引擎插件基本概念向量 Vector网格模型 Mesh Physijs物理引擎插件https://www.wjceo.com/ 基本概念 向量 Vectorlet v1 = new THREE.Vector3(12,5,4)console.log('向量x分量',v1.x,v1.y,v1.z)// 12,5,4v1.x = 20// 20,5,4v1.set(80,90,100)// 80,90,100 网格模型 Mesh属性:position位置属性