three.js PolarGridHelper

2023-02-16 17:41 更新

極坐標格輔助對象. 坐標格實際上是2維線數(shù)組.

代碼示例

const radius = 10;
const sectors = 16;
const rings = 8;
const divisions = 64;

const helper = new THREE.PolarGridHelper( radius, sectors, rings, divisions );
scene.add( helper );

例子

WebGL / helpers

構造函數(shù)

PolarGridHelper( radius : Number, sectors : Number, rings : Number, divisions : Number, color1 : Color, color2 : Color )

radius -- 極坐標格半徑. 可以為任何正數(shù). 默認為 10.
sectors -- 網(wǎng)格將被劃分成的扇區(qū)數(shù)。這可以是任何正整數(shù)。默認值為 16。

rings -- 環(huán)數(shù)。這可以是任何正整數(shù)。默認值為 8。

divisions -- 圓圈細分段數(shù). 可以為任何大于或等于3的正整數(shù). 默認為 64.
color1 -- 極坐標格使用的第一個顏色. 值可以為 Color 類型, 16進制 和 CSS 顏色名. 默認為 0x444444
color2 -- 極坐標格使用的第二個顏色. 值可以為 Color 類型, 16進制 和 CSS 顏色名. 默認為 0x888888

創(chuàng)建一個新的 PolarGridHelper,其半徑為“radius”,扇區(qū)數(shù)為“sectors”,環(huán)數(shù)為“rings”,其中每個圓被平滑為線段數(shù)為“divisions”。顏色是可選的。

源碼

src/helpers/PolarGridHelper.js


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

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號