three.js ParametricGeometry
2023-02-16 17:49 更新
生成由参数表示其表面的几何体。
代码示例
const geometry = new THREE.ParametricGeometry( THREE.ParametricGeometries.klein, 25, 25 );
const material = new THREE.MeshBasicMaterial( { color: 0x00ff00 } );
const klein = new THREE.Mesh( geometry, material );
scene.add( klein );
构造函数
ParametricGeometry(func : Function, slices : Integer, stacks : Integer)
func — 一个函数,它接受一个介于 0 和 1 之间的 u 和 v 值,并修改第三个 Vector3 参数。默认是生成曲面的函数。
slices — 用于参数函数的切片数。默认值为 8。
stacks — 用于参数函数的堆栈数。默认值为 8。
属性
共有属性请参见其基类BufferGeometry。
.parameters : Object
一个包含着构造函数中每个参数的对象。在对象实例化之后,对该属性的任何修改都不会改变这个几何体。
方法(Methods)
共有方法请参见其基类BufferGeometry。
方法
examples/jsm/geometries/ParametricGeometry.js
以上内容是否对您有帮助:
更多建议: