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


以上內容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號