Go to: Synopsis. Return value. Keywords. Related. Flags. MEL examples.
 nurbsEditUV [-angle float] [-pivotU float] [-pivotV float] [-relative boolean] [-rotateRatio float] [-rotation boolean] [-scale boolean] [-scaleU float] [-scaleV float] [-uValue float] [-vValue float]   
nurbsEditUV is undoable, queryable, and NOT editable.
Command Edits UVs on NURBS objects. When used with the query flag, it returns the UV values associated with the specified components.| boolean | Success or Failure. | 
In query mode, return type is based on queried flag.
| Long name (short name) | Argument types | Properties | ||
|---|---|---|---|---|
| -angle(-a) | float |    | ||
| 
 | ||||
| -pivotU(-pu) | float |    | ||
| 
 | ||||
| -pivotV(-pv) | float |    | ||
| 
 | ||||
| -relative(-r) | boolean |    | ||
| 
 | ||||
| -rotateRatio(-rr) | float |    | ||
| 
 | ||||
| -rotation(-rot) | boolean |    | ||
| 
 | ||||
| -scale(-s) | boolean |    | ||
| 
 | ||||
| -scaleU(-su) | float |    | ||
| 
 | ||||
| -scaleV(-sv) | float |    | ||
| 
 | ||||
| -uValue(-u) | float |    | ||
| 
 | ||||
| -vValue(-v) | float |    | ||
| 
 | ||||
|  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. | 
string $result[] = `sphere`; string $shape = $result[0]; select -r $shape; nurbsUVSet -create; nurbsUVSet -useExplicit 1; select -r ($shape+".cv[3:5][2:4]"); // Rotate the UVs by 45 degrees nurbsEditUV -angle 45;