ジャンプ先: 概要. 戻り値. キーワード. 関連. フラグ. MEL 例.
polyInfo [-edgeToFace] [-edgeToVertex] [-faceNormals] [-faceToEdge] [-faceToVertex] [-invalidEdges] [-invalidVertices] [-laminaFaces] [-nonManifoldEdges] [-nonManifoldVertices] [-vertexToEdge] [-vertexToFace]
polyInfo は、取り消し不可能、照会不可能、および編集不可能です。
ポリゴン オブジェクトとコンポーネントのトポロジ情報を照会します。つまりこのコマンドでは、次を指定する必要があります。- 照会するセレクション リストstring | コンポーネント |
ロング ネーム(ショート ネーム) | 引数タイプ | プロパティ | ||
---|---|---|---|---|
-edgeToFace(-ef)
|
|
|||
|
||||
-edgeToVertex(-ev)
|
|
|||
|
||||
-faceNormals(-fn)
|
|
|||
|
||||
-faceToEdge(-fe)
|
|
|||
|
||||
-faceToVertex(-fv)
|
|
|||
|
||||
-invalidEdges(-ie)
|
|
|||
|
||||
-invalidVertices(-iv)
|
|
|||
|
||||
-laminaFaces(-lf)
|
|
|||
|
||||
-nonManifoldEdges(-nme)
|
|
|||
|
||||
-nonManifoldVertices(-nmv)
|
|
|||
|
||||
-vertexToEdge(-ve)
|
|
|||
|
||||
-vertexToFace(-vf)
|
|
|||
|
フラグはコマンドの作成モードで表示できます | フラグはコマンドの編集モードで表示できます |
フラグはコマンドの照会モードで表示できます | コマンド内でフラグを複数回使用できます。 |
// 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] //