three.js PlaneGeometry

2023-02-16 17:34 更新

一個(gè)用于生成平面幾何體的類(lèi)。

示例

代碼示例

const geometry = new THREE.PlaneGeometry( 1, 1 );
const material = new THREE.MeshBasicMaterial( {color: 0xffff00, side: THREE.DoubleSide} );
const plane = new THREE.Mesh( geometry, material );
scene.add( plane );

構(gòu)造器

PlaneGeometry(width : Float, height : Float, widthSegments : Integer, heightSegments : Integer)

width — 平面沿著X軸的寬度。默認(rèn)值是1。
height — 平面沿著Y軸的高度。默認(rèn)值是1。
widthSegments — (可選)平面的寬度分段數(shù),默認(rèn)值是1。
heightSegments — (可選)平面的高度分段數(shù),默認(rèn)值是1。

屬性

共有屬性請(qǐng)參見(jiàn)其基類(lèi)BufferGeometry。

.parameters

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

方法(Methods)

共有方法請(qǐng)參見(jiàn)其基類(lèi)BufferGeometry。

源代碼

src/geometries/PlaneGeometry.js


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

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)