The twoPointArcCtx command creates a new context for creating two point circular arcs
| Long name (short name) | Argument Types | Properties | |
|---|---|---|---|
| degree (d) | int |
|
|
|
|||
| exists (ex) | bool | ||
| history (ch) | bool | ||
| image1 (i1) | unicode | ||
| image2 (i2) | unicode | ||
| image3 (i3) | unicode | ||
| name (n) | unicode | ||
| spans (s) | int |
|
|
|
|||
Derived from mel command maya.cmds.twoPointArcCtx
Example:
import pymel.core as pm
import maya.cmds as cmds
# To create a new context that will create curves of degree 1:
pm.twoPointArcCtx( degree=1 )
# Result: u'twoPointArcCtx1' #
# To query the degree of an existing context:
pm.twoPointArcCtx( 'arcContext1', q=True, degree=True )