ThreeJS-几何体

Posted qhdxqxx

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ThreeJS-几何体相关的知识,希望对你有一定的参考价值。

示例

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-几何体的主要内容,如果未能解决你的问题,请参考以下文章

THREEJS案例-天空盒和草地

ThreeJS 将缓冲区几何从 FBX 解析为几何

threejs+d3js 绘制3D动态数据图

Threejs核心API

threejs学习day3:几何形状

图形细分 —— threejs