ジャンプ先: 概要. 戻り値. 関連. フラグ. MEL 例.
polyTorus [-axis linear linear linear] [-caching boolean] [-constructionHistory boolean] [-createUVs boolean] [-name string] [-nodeState int] [-object boolean] [-radius linear] [-sectionRadius linear] [-subdivisionsAxis int] [-subdivisionsHeight int] [-subdivisionsX int] [-subdivisionsY int] [-texture boolean] [-twist angle]
polyTorus は、取り消し可能、照会可能、および編集可能です。
新しいポリゴン トーラスを作成します。string[] | オブジェクト名とノード名 |
照会モードでは、戻り値のタイプは照会されたフラグに基づきます。
ロング ネーム(ショート ネーム) | 引数タイプ | プロパティ | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Common poly creation operation flags | ||||||||||||
-axis(-ax)
|
linear linear linear
|
|||||||||||
|
||||||||||||
-caching(-cch)
|
boolean
|
|||||||||||
|
||||||||||||
-constructionHistory(-ch)
|
boolean
|
|||||||||||
|
||||||||||||
-createUVs(-cuv)
|
boolean
|
|||||||||||
|
||||||||||||
-name(-n)
|
string
|
|||||||||||
|
||||||||||||
-nodeState(-nds)
|
int
|
|||||||||||
|
||||||||||||
-object(-o)
|
boolean
|
|||||||||||
|
||||||||||||
-radius(-r)
|
linear
|
|||||||||||
|
||||||||||||
-sectionRadius(-sr)
|
linear
|
|||||||||||
|
||||||||||||
-subdivisionsAxis(-sa)
|
int
|
|||||||||||
|
||||||||||||
-subdivisionsHeight(-sh)
|
int
|
|||||||||||
|
||||||||||||
-subdivisionsX(-sx)
|
int
|
|||||||||||
|
||||||||||||
-subdivisionsY(-sy)
|
int
|
|||||||||||
|
||||||||||||
-texture(-tx)
|
boolean
|
|||||||||||
|
||||||||||||
-twist(-tw)
|
angle
|
|||||||||||
|
||||||||||||
共通のフラグ |
フラグはコマンドの作成モードで表示できます | フラグはコマンドの編集モードで表示できます |
フラグはコマンドの照会モードで表示できます | コマンド内でフラグを複数回使用できます。 |
polyTorus -sx 8 -sy 16 -r 10 -sr 1; //result has 8 sections of 16 segments, //the main radius is 10, the section radius is 1. polyTorus -sx 5 -sy 4 -tx off; move -3 0 0; //result has 5 sections of 4 segments, default sizes. //no texture offsets are generated. polyTorus -sx 5 -sy 4 -tw 45; move 3 0 0; //result has 5 sections of 4 segments, default sizes. //The sections are rotated. // Query the radius of the torus float $r = `polyTorus -q -r polyTorus1`;