Go to: Synopsis. Return value. Flags. Python examples.
bezierInfo([anchorFromCV=int], [cvFromAnchor=int], [isAnchorSelected=boolean], [isTangentSelected=boolean], [onlyAnchorsSelected=boolean], [onlyTangentsSelected=boolean])
Note: Strings representing object names and arguments must be separated by commas. This is not depicted in the synopsis.
bezierInfo is undoable, NOT queryable, and NOT editable.
This command provides a queryable interface for Bezier curve shapes.
anchorFromCV, cvFromAnchor, isAnchorSelected, isTangentSelected, onlyAnchorsSelected, onlyTangentsSelected
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 have multiple arguments, passed either as a tuple or a list.
|
import maya.cmds as cmds
# Queries the CV index of the anchor index 1
cmds.bezierInfo( cfa=1 )
# Queries the anchor index of a CV index 3
cmds.bezierInfo( afc=3 );