0

嗨伙计,

我在 Three.js 中有一个属于表面的问题:我有一堆 Vec3 点,想通过它们插入一个表面。在搜索时,我偶然发现了贝塞尔曲线(three.js bezier - 仅作为线条),看起来更像是我正在搜索的东西:three.js Nurbs。我试图重构代码,但文档很糟糕(像这样的页面),我没有通过重构代码了解一切是如何工作的......

那么问题来了:有没有什么简单的方法可以从我的计算点中得到一个形状?(如果没有插值,我仍然会很高兴)。

谢谢你们!

编辑:我想要实现的是曲面图。我偶然发现了http://acko.net/blog/making-mathbox/但它对我的需求来说太大了......

4

1 回答 1

2

经过一番尝试和错误,我找到了解决方案:添加一个平面,然后转换单个顶点。

// need to setup 'step', 'xStart', 'xEnd', 'yStart', 'yEnd'

// calc the variables
var width = Math.abs(-xStart+xEnd),
    height = Math.abs(-yStart+yEnd);

var stepsX = width*step, stepsY = height*step;

var posX = (xStart+xEnd)/2;
var posZ = (yStart+yEnd)/2;

// add a plane and morph it to a function
var geometry = new THREE.PlaneGeometry( width, height, stepsX - 1, stepsY - 1 );
geometry.applyMatrix( new THREE.Matrix4().makeRotationX( - Math.PI / 2 ) );

var size = stepsX * (stepsY), 
    data = new Float32Array( size );

var count = 0, scope = {};

mesh = new THREE.Mesh( geometry, new THREE.MeshNormalMaterial( { 
    side : THREE.DoubleSide,
    transparent: true,
    shading: THREE.SmoothShading,
    opacity : _opacity }));


mesh.updateMatrixWorld();

// calc y value for every vertice
for ( var i = 0; i < size; i ++ ) {
    // calculate the current values
    // http://stackoverflow.com/questions/11495089/how-to-get-the-absolute-position-of-a-vertex-in-three-js
    var vector = mesh.geometry.vertices[i].clone();
    vector.applyMatrix4( 
        mesh.matrixWorld
        );
    // set them into the scope
    scope.x = vector.x + posX;
    scope.y = vector.z + posZ;
    // calculate point and write it in a temp array
    data[i] = math.eval(term, scope);
}

// push the new vertice data
for ( var i = 0, l = geometry.vertices.length; i < l; i ++ ) {
    geometry.vertices[ i ].y = data[ i ];
}

// update the new normals
geometry.computeFaceNormals();
geometry.computeVertexNormals();

// add to scene
scene.add( mesh );

唯一的问题是它不适用于非静态函数,例如tan(x). 此代码段使用math.js来计算术语。

问候垫

于 2015-02-16T11:34:51.050 回答