ジャンプ先: 概要. 戻り値. 関連. フラグ. MEL 例.
polySubdivideEdge [-caching boolean] [-constructionHistory boolean] [-divisions int] [-name string] [-nodeState int] [-size linear] [-worldSpace boolean]
polySubdivideEdge は、取り消し可能、照会可能、および編集可能です。
複数のサブエッジにエッジを分割します。string | ノード名 |
照会モードでは、戻り値のタイプは照会されたフラグに基づきます。
ロング ネーム(ショート ネーム) | 引数タイプ | プロパティ | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Common poly modifier operation flags | ||||||||||||
-caching(-cch)
|
boolean
|
|||||||||||
|
||||||||||||
-constructionHistory(-ch)
|
boolean
|
|||||||||||
|
||||||||||||
-divisions(-dv)
|
int
|
|||||||||||
|
||||||||||||
-name(-n)
|
string
|
|||||||||||
|
||||||||||||
-nodeState(-nds)
|
int
|
|||||||||||
|
||||||||||||
-size(-s)
|
linear
|
|||||||||||
|
||||||||||||
-worldSpace(-ws)
|
boolean
|
|||||||||||
|
フラグはコマンドの作成モードで表示できます | フラグはコマンドの編集モードで表示できます |
フラグはコマンドの照会モードで表示できます | コマンド内でフラグを複数回使用できます。 |
polyCube -n plg -w 5 -h 5 -d 5; scale 2 2 2; select plg; polyOptions -ao -dv true; select -cl; // Simple subdivision select plg.e[1]; polySubdivideEdge -dv 4; // The selected edges are subdivided by 4 vertices (5 subedges). // Local bound select plg.e[7]; polySubdivideEdge -dv 4 -s 1.5; // The length of each subedge must be greater or equal to 1.5 // in local space. Length of original edge is 5 in local space. // Min size indicates that only 3 subedges can be created. // World bound select plg.e[5]; polySubdivideEdge -dv 4 -s 2 -ws true; // The length of each subedge has to be greater or equal to 2 // in world space. Length of original edge is 10 in world space. // All required subdivisions are done.