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

Synopsis

polyCheck [-edge] [-face] [-openFile string] poly poly...

polyCheck is undoable, NOT queryable, and NOT editable.

Dumps a description of internal memory representation of poly objects.
If no objects are specified in the command line, the objects from the active list are used.
Default behaviour is to print only a summary. Use the flags above to get more details on a specific part of the object.

Return value

intThe number of errors.

Flags

edge, face, openFile
Long name (short name) Argument types Properties
-edge(-e) create
Check edge descriptions.
-face(-f) create
Check face descriptions. If no flag is set, a complete check is performed.
-openFile(-of) string create
Opens a file that contains a poly description, as dumped out by the debug commands.

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.

MEL examples

polyPlane;
polyCheck;
polyCheck -f;