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

Synopsis

bezierAnchorState [-even boolean] [-smooth boolean]

bezierAnchorState is undoable, NOT queryable, and NOT editable.

The bezierAnchorState command provides an easy interface to modify anchor states:

- Smooth/Broken anchor tangents - Even/Uneven weighted anchor tangents

Return value

int(number of modified anchors)

Flags

even, smooth
Long name (short name) Argument types Properties
-smooth(-sm) boolean create
Sets selected anchors (or attached tangent handles) to smooth when true, broken otherwise.
-even(-ev) boolean create
Sets selected anchors (or attached tangent handles) to even weighting when true, uneven otherwise.

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

// Sets all selected anchors (or attached tangent handles) to smooth and uneven
bezierAnchorState -sm 1 -ev 0