This command provides a queryable interface for Bezier curve shapes.
Flags:
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 have multiple arguments, passed either as a tuple or a list. |
Derived from mel command maya.cmds.bezierInfo
Example:
import pymel.core as pm
# 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 );