ジャンプ先: 概要. 戻り値. 関連. フラグ. MEL 例.
polyCone [-axis linear linear linear] [-caching boolean] [-constructionHistory boolean] [-createUVs int] [-height linear] [-name string] [-nodeState int] [-object boolean] [-radius linear] [-roundCap boolean] [-subdivisionsAxis int] [-subdivisionsCap int] [-subdivisionsHeight int] [-subdivisionsX int] [-subdivisionsY int] [-subdivisionsZ int] [-texture boolean]
polyCone は、取り消し可能、照会可能、および編集可能です。
新しいポリゴン円錐を作成します。string[] | オブジェクト名とノード名 |
照会モードでは、戻り値のタイプは照会されたフラグに基づきます。
ロング ネーム(ショート ネーム) | 引数タイプ | プロパティ | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Common poly creation operation flags | ||||||||||||
-axis(-ax)
|
linear linear linear
|
|||||||||||
|
||||||||||||
-caching(-cch)
|
boolean
|
|||||||||||
|
||||||||||||
-constructionHistory(-ch)
|
boolean
|
|||||||||||
|
||||||||||||
-createUVs(-cuv)
|
int
|
|||||||||||
|
||||||||||||
-height(-h)
|
linear
|
|||||||||||
|
||||||||||||
-name(-n)
|
string
|
|||||||||||
|
||||||||||||
-nodeState(-nds)
|
int
|
|||||||||||
|
||||||||||||
-object(-o)
|
boolean
|
|||||||||||
|
||||||||||||
-radius(-r)
|
linear
|
|||||||||||
|
||||||||||||
-roundCap(-rcp)
|
boolean
|
|||||||||||
|
||||||||||||
-subdivisionsAxis(-sa)
|
int
|
|||||||||||
|
||||||||||||
-subdivisionsCap(-sc)
|
int
|
|||||||||||
|
||||||||||||
-subdivisionsHeight(-sh)
|
int
|
|||||||||||
|
||||||||||||
-subdivisionsX(-sx)
|
int
|
|||||||||||
|
||||||||||||
-subdivisionsY(-sy)
|
int
|
|||||||||||
|
||||||||||||
-subdivisionsZ(-sz)
|
int
|
|||||||||||
|
||||||||||||
-texture(-tx)
|
boolean
|
|||||||||||
|
フラグはコマンドの作成モードで表示できます | フラグはコマンドの編集モードで表示できます |
フラグはコマンドの照会モードで表示できます | コマンド内でフラグを複数回使用できます。 |
// Create a cone, with 10 subdivisions in the X direction, // 15 subdivisions in the Y direction and 20 subdivisions in the Z direction, // the radius of the cone is 20, the height of the cone is 10. polyCone -sx 10 -sy 15 -sz 5 -r 20 -h 10; // Create a cone, called "myCone", on each direction there are 5 subdivisions. polyCone -n myCone -sx 5 -sy 5 -sz 5; // Query the radius of "myCone" float $r = `polyCone -q -r myCone`;