Go to: Synopsis. Return value. Flags. MEL examples.
polyUVCoverage [-uvRange float float float float]
selectionItem[]
polyUVCoverage is undoable, NOT queryable, and NOT editable.
Return the UV space coverage of the specified components.| float[] | UV space coverage percentage |
| Long name (short name) | Argument types | Properties | ||
|---|---|---|---|---|
-uvRange(-ur)
|
float float float float
|
|
||
|
||||
// Return UV coverage from selection list // polyUVCoverage; // Result: 0.38 // // Return UV coverage from specified components with specified range // polyUVCoverage -uvRange 0 0 2 2 pCube1.f[0:5]; // Result: 0.0979 //