polyOptions [-activeObjects] [-allEdges] [-backCullVertex boolean] [-backCulling] [-colorMaterialChannel string] [-colorShadedDisplay boolean] [-displayAlphaAsGreyScale boolean] [-displayBorder boolean] [-displayCenter boolean] [-displayCreaseEdge boolean] [-displayCreaseVertex boolean] [-displayGeometry boolean] [-displayInvisibleFaces boolean] [-displayItemNumbers boolean boolean boolean boolean] [-displayMapBorder boolean] [-displayMetadata boolean boolean boolean] [-displayNormal boolean] [-displaySubdComps boolean] [-displayTriangle boolean] [-displayUVTopology boolean] [-displayUVs boolean] [-displayVertex boolean] [-displayWarp boolean] [-facet] [-fullBack] [-global] [-hardBack] [-hardEdge] [-materialBlend string] [-newPolymesh] [-point] [-pointFacet] [-relative] [-reuseTriangles boolean] [-sizeBorder float] [-sizeNormal float] [-sizeUV float] [-sizeVertex float] [-softEdge] [-vertexNormalMethod int] [-wireBackCulling]
polyOptions は、取り消し可能、照会可能、および編集不可能です。
グローバル表示ポリゴン アトリビュートを変更します。なし
照会モードでは、戻り値のタイプは照会されたフラグに基づきます。
ロング ネーム(ショート ネーム) | 引数タイプ | プロパティ | ||
---|---|---|---|---|
-relative(-r)
|
|
|||
|
||||
-colorMaterialChannel(-cm)
|
string
|
|||
|
||||
-materialBlend(-mb)
|
string
|
|||
|
||||
-colorShadedDisplay(-cs)
|
boolean
|
|||
|
||||
-displayVertex(-dv)
|
boolean
|
|||
|
||||
-displayCenter(-dc)
|
boolean
|
|||
|
||||
-displayTriangle(-dt)
|
boolean
|
|||
|
||||
-displayBorder(-db)
|
boolean
|
|||
|
||||
-displayMapBorder(-dmb)
|
boolean
|
|||
|
||||
-displayCreaseEdge(-dce)
|
boolean
|
|||
|
||||
-displayCreaseVertex(-dcv)
|
boolean
|
|||
|
||||
-displaySubdComps(-dsc)
|
boolean
|
|||
|
||||
-sizeBorder(-sb)
|
float
|
|||
|
||||
-sizeVertex(-sv)
|
float
|
|||
|
||||
-displayWarp(-dw)
|
boolean
|
|||
|
||||
-displayItemNumbers(-din)
|
boolean boolean boolean boolean
|
|||
|
||||
-displayMetadata(-dmt)
|
boolean boolean boolean
|
|||
|
||||
-displayNormal(-dn)
|
boolean
|
|||
|
||||
-displayUVs(-duv)
|
boolean
|
|||
|
||||
-displayUVTopology(-uvt)
|
boolean
|
|||
|
||||
-sizeUV(-suv)
|
float
|
|||
|
||||
-point(-pt)
|
|
|||
|
||||
-facet(-f)
|
|
|||
|
||||
-pointFacet(-pf)
|
|
|||
|
||||
-sizeNormal(-sn)
|
float
|
|||
|
||||
-allEdges(-ae)
|
|
|||
|
||||
-softEdge(-se)
|
|
|||
|
||||
-hardEdge(-he)
|
|
|||
|
||||
-displayGeometry(-dg)
|
boolean
|
|||
|
||||
-backCulling(-bc)
|
|
|||
|
||||
-wireBackCulling(-wbc)
|
|
|||
|
||||
-hardBack(-hb)
|
|
|||
|
||||
-fullBack(-fb)
|
|
|||
|
||||
-backCullVertex(-bcv)
|
boolean
|
|||
|
||||
-reuseTriangles(-rt)
|
boolean
|
|||
|
||||
-global(-gl)
|
|
|||
|
||||
-activeObjects(-ao)
|
|
|||
|
||||
-newPolymesh(-np)
|
|
|||
|
||||
-displayAlphaAsGreyScale(-dal)
|
boolean
|
|||
|
||||
-displayInvisibleFaces(-dif)
|
boolean
|
|||
|
||||
-vertexNormalMethod(-vnm)
|
int
|
|||
|
フラグはコマンドの作成モードで表示できます | フラグはコマンドの編集モードで表示できます |
フラグはコマンドの照会モードで表示できます | コマンド内でフラグを複数回使用できます。 |
polyCube -n plg -sx 3 -sy 3 -sz 3 -w 5 -h 5 -d 5; delete plg.f[9:17]; // Vertices polyOptions -displayVertex true; // Toggle vertices polyOptions -r -displayVertex true; // Toggle, whatever the value given to the flag in this command. // It was previously true, it is set to false : vertices are not drawn. // Facet centers polyOptions -displayCenter true; polyOptions -displayCenter false; // Triangulation polyOptions -displayTriangle true; polyOptions -displayTriangle false; // Reusing Triangulation polyOptions -reuseTriangles true; polyOptions -reuseTriangles false; // Borders polyOptions -displayBorder true; // Border size polyOptions -sb 3; // Increase border size polyOptions -r -sb 2; polyOptions -displayBorder false -sb 3; // Map borders polyOptions -displayMapBorder true; polyOptions -displayMapBorder false; // Normals // Normal type polyOptions -displayNormal true; polyOptions -pt; // on vertices polyOptions -pf; // on vertices and facets polyOptions -f; // on facets // normal size polyOptions -sn 2; // Increase normal size polyOptions -r -sn 1.5; polyOptions -displayNormal false; // Edges polyOptions -softEdge; polyOptions -hardEdge; polyOptions -allEdges; // Geometry polyOptions -displayGeometry false; polyOptions -displayGeometry true; // Backculling polyOptions -wireBackCulling; polyOptions -hardBack; polyOptions -fullBack; polyOptions -displayVertex true -backCullVertex true; polyOptions -backCullVertex false; polyOptions -displayVertex false; polyOptions -backCulling; // Color Shaded Display polyOptions -colorShadedDisplay true; polyOptions -colorMaterialChannel "DIFFUSE";