Go to: Synopsis. Return value. Keywords. Related. Flags. MEL examples.
nurbsEditUV [-angle float] [-pivotU float] [-pivotV float] [-relative boolean] [-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.
nurbs, editUV, tweakUV, uvEditing
nurbsCopyUVSet, nurbsUVSet
angle, pivotU, pivotV, relative, rotation, scale, scaleU, scaleV, uValue, vValue
Long name (short name) |
Argument types |
Properties |
-relative(-r)
|
boolean
|
|
|
Specifies whether this command is editing the values relative to the currently
existing values. Default is true;
|
|
-uValue(-u)
|
float
|
|
|
Specifies the value, in the u direction - absolute if relative flag is false..
|
|
-vValue(-v)
|
float
|
|
|
Specifies the value, in the v direction - absolute if relative flag is false..
|
|
-rotation(-rot)
|
boolean
|
|
|
Specifies whether this command is editing the values with rotation values
|
|
-scale(-s)
|
boolean
|
|
|
Specifies whether this command is editing the values with scale values
|
|
-pivotU(-pu)
|
float
|
|
|
Specifies the pivot value, in the u direction, about which the scale or
rotate is to be performed.
|
|
-pivotV(-pv)
|
float
|
|
|
Specifies the pivot value, in the v direction, about which the scale or
rotate is to be performed.
|
|
-scaleU(-su)
|
float
|
|
|
Specifies the scale value in the u direction.
|
|
-scaleV(-sv)
|
float
|
|
|
Specifies the scale value in the v direction.
|
|
-angle(-a)
|
float
|
|
|
Specifies the angle value (in degrees) that the uv values are to be rotated
by.
|
|
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;