ジャンプ先: 概要. 戻り値. 関連. フラグ. MEL 例.
polyMirrorFace [-axis int] [-axisDirection int] [-caching boolean] [-constructionHistory boolean] [-direction int] [-mergeMode int] [-mergeThreshold linear] [-mergeThresholdType int] [-mirrorAxis int] [-mirrorPosition linear] [-name string] [-nodeState int] [-pivot linear linear linear] [-pivotX linear] [-pivotY linear] [-pivotZ linear] [-worldSpace boolean]
polyMirrorFace は、取り消し可能、照会可能、および編集可能です。
選択したオブジェクトのフェースをすべてミラーリングします。| string | ノード名 |
照会モードでは、戻り値のタイプは照会されたフラグに基づきます。
| ロング ネーム(ショート ネーム) | 引数タイプ | プロパティ | ||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Common poly modifier operation flags | ||||||||||||
-axis(-a)
|
int
|
|
||||||||||
|
||||||||||||
-axisDirection(-ad)
|
int
|
|
||||||||||
|
||||||||||||
-caching(-cch)
|
boolean
|
|
||||||||||
|
||||||||||||
-constructionHistory(-ch)
|
boolean
|
|
||||||||||
|
||||||||||||
-direction(-d)
|
int
|
|
||||||||||
|
||||||||||||
-mergeMode(-mm)
|
int
|
|
||||||||||
|
||||||||||||
-mergeThreshold(-mt)
|
linear
|
|
||||||||||
|
||||||||||||
-mergeThresholdType(-mtt)
|
int
|
|
||||||||||
|
||||||||||||
-mirrorAxis(-ma)
|
int
|
|
||||||||||
|
||||||||||||
-mirrorPosition(-mps)
|
linear
|
|
||||||||||
|
||||||||||||
-name(-n)
|
string
|
|
||||||||||
|
||||||||||||
-nodeState(-nds)
|
int
|
|
||||||||||
|
||||||||||||
-pivot(-p)
|
linear linear linear
|
|
||||||||||
|
||||||||||||
-pivotX(-px)
|
linear
|
|
||||||||||
|
||||||||||||
-pivotY(-py)
|
linear
|
|
||||||||||
|
||||||||||||
-pivotZ(-pz)
|
linear
|
|
||||||||||
|
||||||||||||
-worldSpace(-ws)
|
boolean
|
|
||||||||||
|
||||||||||||
// Mirror about +X direction by merging the border vertices polyCube -name poly1; delete poly1.f[4]; polyMirrorFace -direction 0 -mergeMode 1 poly1; // Mirror about +Y direction by connecting the border edges // in world reference, by explicitly specifying a pivot point (0, 2, 0) polyCube -name poly2; delete poly2.f[4]; rotate -r -os 0 0 45 poly2; polyMirrorFace -direction 2 -p 0 2 0 -mergeMode 2 -worldSpace 1 poly2;