码迷,mamicode.com
首页 > Web开发 > 详细

threejs 绘制辅助网格

时间:2019-12-20 18:26:35      阅读:213      评论:0      收藏:0      [点我收藏+]

标签:0x13   创建   vector   math   帮助   div   try   位置   asi   

GridHelper.js可以帮助绘制一个xz平面网格,它没有提供更多的参数,所以不能用于生成xy网格。

xy网格实现代码如下:

 

        var size = 6000;
        var divisions = 50;

        // var gridHelper = new THREE.GridHelper(size, divisions, 0x1231c3, 0x135133);
        // this.scene.add(gridHelper);

        var geometry = new THREE.Geometry(); //创建geometry  
        geometry.vertices.push(new THREE.Vector3(-size / 2, 0, 0)); //添加顶点  
        geometry.vertices.push(new THREE.Vector3(size / 2, 0, 0));
        for (var i = 0, len = size / divisions; i <= len; i++) {
            var line = new THREE.Line(geometry, new THREE.LineBasicMaterial({
                color: 0x455454
            })); //利用geometry和material创建line  
            line.position.y = i * divisions - size / 2; //设置line的位置  
            this.scene.add(line); //将line添加到场景中  

            var line = new THREE.Line(geometry, new THREE.LineBasicMaterial({
                color: 0x324132
            }));
            line.position.x = i * divisions - size / 2;
            line.rotation.z = Math.PI / 2; //绕y轴旋转90度  
            this.scene.add(line);
        }

 

threejs 绘制辅助网格

标签:0x13   创建   vector   math   帮助   div   try   位置   asi   

原文地址:https://www.cnblogs.com/anrainie/p/12074473.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!