three.js LatheGeometry

2023-02-16 17:34 更新

創(chuàng)建具有軸對稱性的網(wǎng)格,比如花瓶。車削繞著Y軸來進行旋轉(zhuǎn)。

示例

代碼示例

const points = [];
for ( let i = 0; i < 10; i ++ ) {
	points.push( new THREE.Vector2( Math.sin( i * 0.2 ) * 10 + 5, ( i - 5 ) * 2 ) );
}
const geometry = new THREE.LatheGeometry( points );
const material = new THREE.MeshBasicMaterial( { color: 0xffff00 } );
const lathe = new THREE.Mesh( geometry, material );
scene.add( lathe );

構(gòu)造器

LatheGeometry(points : Array, segments : Integer, phiStart : Float, phiLength : Float)

points — 一個Vector2對象數(shù)組。每個點的X坐標必須大于0。 Default is an array with (0,-0.5), (0.5,0) and (0,0.5) which creates a simple diamond shape.
segments — 要生成的車削幾何體圓周分段的數(shù)量,默認值是12。
phiStart — 以弧度表示的起始角度,默認值為0。
phiLength — 車削部分的弧度(0-2PI)范圍,2PI將是一個完全閉合的、完整的車削幾何體,小于2PI是部分的車削。默認值是2PI。

基于參數(shù)創(chuàng)建一個LatheGeometry。

屬性

共有屬性請參見其基類BufferGeometry。

.parameters : Object

一個包含著構(gòu)造函數(shù)中每個參數(shù)的對象。在對象實例化之后,對該屬性的任何修改都不會改變這個幾何體。

方法(Methods)

共有方法請參見其基類BufferGeometry。

源代碼

src/geometries/LatheGeometry.js


以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號