Go to: Synopsis. Flags. Return value. Related. MEL examples.

Synopsis

polyCollapseFacet [-constructionHistory boolean] [-name string]

polyCollapseFacet is undoable, queryable, and editable.

Turns each selected facet into a point.

Flags

constructionHistory, name
Long name (short name) [argument types] Properties
-name(-n) string create
Name the resulting object.
-constructionHistory(-ch) boolean createquery
Turn the construction history on or off (where applicable).
Q: When queried, this flag returns an int

In query mode, this flag needs a value.


Flag can appear in Create mode of command Flag can appear in Edit mode of command
Flag can appear in Query mode of command Flag can be used more than once in a command

Return value


string The node name.

Related

polyCloseBorder, polyCollapseEdge, polyDelEdge, polyDelFacet, polyDelVertex, polyMergeEdge, polyMergeFacet, polyMergeVertex, polyQuad, polyReduce, polySewEdge

MEL examples

// Create a plane.
polyPlane -n plg -sx 10 -sy 10 -h 20 -w 20;

// You can collapse a facet,
polyCollapseFacet plg.f[54];

// Or several ones.
polyCollapseFacet plg.f[33:35] plg.f[43:45] plg.f[53:55];