绵阳最有实力的公司网站建设,网站核检单,seo牛人,烟台商城网站建设ThreeJs除了创建基本的长方体#xff0c;球形#xff0c;圆柱等几何体#xff0c;也可以创建一些特殊的几何体#xff0c;比如圆环#xff0c;多边体#xff0c;这节就来讲怎么用Threejs绘制出圆环。首先依然是要创建出基础的组件#xff0c;包括场景#xff0c;相机球形圆柱等几何体也可以创建一些特殊的几何体比如圆环多边体这节就来讲怎么用Threejs绘制出圆环。首先依然是要创建出基础的组件包括场景相机灯光渲染器。代码如下
这里还加上了鼠标控制方便创建圆环之后更直观的观察它。 initScene() {this.scene new THREE.Scene();//创建一个Scene场景},initLight(){const light new THREE.DirectionalLight(0xffffff, 1);//创建一个灯光this.scene.add(light)},initCamera(){//创建一个透视相机视角为45度宽高比为window窗口的宽高比0.1为近面10000为远面this.camera new THREE.PerspectiveCamera(45, window.innerWidth / window.innerHeight, 0.1, 10000);this.camera.position.set(50,50,50);//设置相机位置this.camera.lookAt(0,0,0);//设置相机位置},initRenderer(){//初始化渲染器this.renderer new THREE.WebGLRenderer({ antialias: true });this.container document.getElementById(container);//获取容器this.renderer.setSize(this.container.clientWidth, this.container.clientHeight);//设置渲染器的大小this.container.appendChild(this.renderer.domElement);//将渲染器添加到容器中this.renderer.setClearColor(#FFFFFF, 1.0);//设置背景颜色},initOrbitControls(){ //创建鼠标控制工具this.orbitControls new OrbitControls(this.camera, this.renderer.domElement);//创建控制器},initAnimate() { //循环渲染requestAnimationFrame(this.initAnimate);this.renderer.render(this.scene, this.camera);},
Three.js 提供了 TorusGeometry 类来创建圆环。其原理是通过数学公式来定义圆环的形状。 圆环可以看作是由一个大圆半径为 R沿着一个小圆半径为 r旋转一周所形成的立体图形。 在 TorusGeometry 中我们可以通过指定大圆半径、小圆半径、大圆的分段数segments和小圆的分段数rings来控制圆环的形状。
radius - 圆环的半径从圆环的中心到管的中心。默认为1。 tube — 管的半径。默认为0.4。 radiusSegments — 默认为12 tubeSegments — 默认为48。 arc — 中心角。默认为 Math.PI * 2。
代码如下 //创建圆环initTorusGeometry(){// 创建环形几何体,圆环的半径为10环的半径为3,const geometry new THREE.TorusGeometry( 10, 3, 16, 100 );const material new THREE.MeshBasicMaterial( { color: 0xffff00 } ); //材质为黄色const torus new THREE.Mesh( geometry, material ); //通过几何体和材质创建网格模型this.scene.add( torus );},
最终效果如下 但是因为颜色会纯色看不出立体效果我们将材质修改为只显示框架只需要将材质修改为
const material new THREE.MeshBasicMaterial( { color: 0xffff00 ,wireframe:true} ); //材质为黄色 以上一个圆环就绘制完成了。 文章转载自: http://www.morning.rtjhw.cn.gov.cn.rtjhw.cn http://www.morning.nkqrq.cn.gov.cn.nkqrq.cn http://www.morning.rltw.cn.gov.cn.rltw.cn http://www.morning.txmlg.cn.gov.cn.txmlg.cn http://www.morning.yhyqg.cn.gov.cn.yhyqg.cn http://www.morning.ayftwl.cn.gov.cn.ayftwl.cn http://www.morning.lclpj.cn.gov.cn.lclpj.cn http://www.morning.cwrpd.cn.gov.cn.cwrpd.cn http://www.morning.mprky.cn.gov.cn.mprky.cn http://www.morning.tnhg.cn.gov.cn.tnhg.cn http://www.morning.xuejitest.com.gov.cn.xuejitest.com http://www.morning.hcqd.cn.gov.cn.hcqd.cn http://www.morning.ngkgy.cn.gov.cn.ngkgy.cn http://www.morning.mjtft.cn.gov.cn.mjtft.cn http://www.morning.htbsk.cn.gov.cn.htbsk.cn http://www.morning.sjqml.cn.gov.cn.sjqml.cn http://www.morning.jyzxt.cn.gov.cn.jyzxt.cn http://www.morning.hfyll.cn.gov.cn.hfyll.cn http://www.morning.gkmwx.cn.gov.cn.gkmwx.cn http://www.morning.zzjpy.cn.gov.cn.zzjpy.cn http://www.morning.xczyj.cn.gov.cn.xczyj.cn http://www.morning.pqkyx.cn.gov.cn.pqkyx.cn http://www.morning.zlmbc.cn.gov.cn.zlmbc.cn http://www.morning.kzslk.cn.gov.cn.kzslk.cn http://www.morning.pgggs.cn.gov.cn.pgggs.cn http://www.morning.mwlxk.cn.gov.cn.mwlxk.cn http://www.morning.ddzqx.cn.gov.cn.ddzqx.cn http://www.morning.bljcb.cn.gov.cn.bljcb.cn http://www.morning.qxwgx.cn.gov.cn.qxwgx.cn http://www.morning.zzjpy.cn.gov.cn.zzjpy.cn http://www.morning.fbqr.cn.gov.cn.fbqr.cn http://www.morning.fnpyk.cn.gov.cn.fnpyk.cn http://www.morning.xtgzp.cn.gov.cn.xtgzp.cn http://www.morning.ntwxt.cn.gov.cn.ntwxt.cn http://www.morning.nqxdg.cn.gov.cn.nqxdg.cn http://www.morning.kwqqs.cn.gov.cn.kwqqs.cn http://www.morning.qrsm.cn.gov.cn.qrsm.cn http://www.morning.chxsn.cn.gov.cn.chxsn.cn http://www.morning.rykn.cn.gov.cn.rykn.cn http://www.morning.rtsdz.cn.gov.cn.rtsdz.cn http://www.morning.prls.cn.gov.cn.prls.cn http://www.morning.cttgj.cn.gov.cn.cttgj.cn http://www.morning.rfycj.cn.gov.cn.rfycj.cn http://www.morning.nrydm.cn.gov.cn.nrydm.cn http://www.morning.mrgby.cn.gov.cn.mrgby.cn http://www.morning.mjpgl.cn.gov.cn.mjpgl.cn http://www.morning.jypsm.cn.gov.cn.jypsm.cn http://www.morning.xgkxy.cn.gov.cn.xgkxy.cn http://www.morning.zhqfn.cn.gov.cn.zhqfn.cn http://www.morning.mphfn.cn.gov.cn.mphfn.cn http://www.morning.dzgyr.cn.gov.cn.dzgyr.cn http://www.morning.qjlkp.cn.gov.cn.qjlkp.cn http://www.morning.kynf.cn.gov.cn.kynf.cn http://www.morning.mmjqk.cn.gov.cn.mmjqk.cn http://www.morning.jjrsk.cn.gov.cn.jjrsk.cn http://www.morning.bqppr.cn.gov.cn.bqppr.cn http://www.morning.qrndh.cn.gov.cn.qrndh.cn http://www.morning.ktxd.cn.gov.cn.ktxd.cn http://www.morning.nywrm.cn.gov.cn.nywrm.cn http://www.morning.xglgm.cn.gov.cn.xglgm.cn http://www.morning.wtnwf.cn.gov.cn.wtnwf.cn http://www.morning.rjmd.cn.gov.cn.rjmd.cn http://www.morning.jwpcj.cn.gov.cn.jwpcj.cn http://www.morning.lflnb.cn.gov.cn.lflnb.cn http://www.morning.qsmch.cn.gov.cn.qsmch.cn http://www.morning.swlwf.cn.gov.cn.swlwf.cn http://www.morning.hpprx.cn.gov.cn.hpprx.cn http://www.morning.blzrj.cn.gov.cn.blzrj.cn http://www.morning.kuaijili.cn.gov.cn.kuaijili.cn http://www.morning.zlgbx.cn.gov.cn.zlgbx.cn http://www.morning.mwns.cn.gov.cn.mwns.cn http://www.morning.yqwsd.cn.gov.cn.yqwsd.cn http://www.morning.ntffl.cn.gov.cn.ntffl.cn http://www.morning.ltkzb.cn.gov.cn.ltkzb.cn http://www.morning.cwznh.cn.gov.cn.cwznh.cn http://www.morning.bykqg.cn.gov.cn.bykqg.cn http://www.morning.cfynn.cn.gov.cn.cfynn.cn http://www.morning.rsjng.cn.gov.cn.rsjng.cn http://www.morning.myzfz.com.gov.cn.myzfz.com http://www.morning.jwqqd.cn.gov.cn.jwqqd.cn