This command provides a queryable interface for Bezier curve shapes.
Long name (short name) | Argument Types | Properties | |
---|---|---|---|
anchorFromCV (afc) | int | ||
|
|||
cvFromAnchor (cfa) | int | ||
|
|||
isAnchorSelected (ias) | bool | ||
|
|||
isTangentSelected (its) | bool | ||
|
|||
onlyAnchorsSelected (oas) | bool | ||
|
|||
onlyTangentsSelected (ots) | bool | ||
Returns 1 if the only CV components selected are tangent CVs. 0, otherwise.Flag can appear in Create mode of commandFlag can have multiple arguments, passed either as a tuple or a list. |
Derived from mel command maya.cmds.bezierInfo
Example:
import pymel.core as pm
import maya.cmds as cmds
# Queries the CV index of the anchor index 1
pm.bezierInfo( cfa=1 )
# Result: 3 #
# Queries the anchor index of a CV index 3
pm.bezierInfo( afc=3 );