Go to: Synopsis. Return value. Flags. MEL examples.
polySlideEdge [-absolute] [-direction uint] [-edgeDirection float] [-symmetry]
polySlideEdge is undoable, NOT queryable, and NOT editable.
Moves an edge loop selection along the edges connected to the sides of
its vertices.
absolute, direction, edgeDirection, symmetry
Long name (short name) |
Argument types |
Properties |
|
-absolute(-a)
|
|
|
|
This flag specifies whether or not the command uses absolute mode
If in absolute then all vertices will move the same distance (the
specified percentage of the smallest edge)
C: Default is off
|
|
-direction(-d)
|
uint
|
|
|
This flag specifies the direction of the slide edge movement
0: is left direction (relative)
1: is right direction (relative)
2: is normal direction (relative)
C: Default is 0
|
|
-edgeDirection(-ed)
|
float
|
|
|
This flag specifies the relative percentage to move along the edges on
either side of the vertices along the edge loop
C: Default is 0.0
|
|
-symmetry(-sym)
|
|
|
|
This flag specifies whether or not the command will do a symmetrical slide. Only takes effect
when symmetry is enabled.
C: Default is off
|
|
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.
|
// Moves the selected edge loops to the left by 50% of their neighbouring left edges
polySlideEdge -ed 0.5 -d 1;
// Moves the selected edge loops to the right by 200% of the length of the shortest neighbouring right edge
polySlideEdge -ed 2 -d 0 -a;