移動先: 概要 戻り値 キーワード. 関連項目. フラグ. MEL 例.
polyInfo [-edgeToFace] [-edgeToVertex] [-faceNormals] [-faceToEdge] [-faceToVertex] [-laminaFaces] [-nonManifoldEdges] [-nonManifoldVertices] [-vertexToEdge] [-vertexToFace]
polyInfo は 「元に戻す」が不可能、「照会」が不可能、「編集」が不可能 です。
ポリゴン オブジェクトとコンポーネントのトポロジ情報を照会します。 つまりこのコマンドでは、次を指定する必要があります。 - 照会するセレクション リストstring | コンポーネント |
ロング ネーム(ショート ネーム) | 引数型 | プロパティ | ||
---|---|---|---|---|
-nonManifoldVertices(-nmv)
|
|
|||
|
||||
-nonManifoldEdges(-nme)
|
|
|||
|
||||
-laminaFaces(-lf)
|
|
|||
|
||||
-edgeToFace(-ef)
|
|
|||
|
||||
-vertexToFace(-vf)
|
|
|||
|
||||
-faceToEdge(-fe)
|
|
|||
|
||||
-faceToVertex(-fv)
|
|
|||
|
||||
-edgeToVertex(-ev)
|
|
|||
|
||||
-vertexToEdge(-ve)
|
|
|||
|
||||
-faceNormals(-fn)
|
|
|||
|
: コマンドの作成モードで使用可能なフラグ | : コマンドの編集モードで使用可能なフラグ |
: コマンドの照会モードで使用可能なフラグ | : 1 つのコマンドで複数回使用可能なフラグ |
// To find all non-manifold edges on a polygonal object called pPlane1 polyInfo -nme; // Result: pPlane1.e[74] // // To find all non-manifold vertices on a polygonal object called pPlane1 polyInfo -nmv; // Result: pPlane1.vtx[38] pPlane1.vtx[49] //