Go to: Synopsis. Return value. Flags. Python examples.
curveEPCtx([degree=uint], [uniform=boolean])
Note: Strings representing object names and arguments must be separated by commas. This is not depicted in the synopsis.
curveEPCtx is undoable, queryable, and editable.
The curveEPCtx command creates a new context for creating curves by placing edit points.| string | (name of the new context) |
In query mode, return type is based on queried flag.
| Long name (short name) | Argument types | Properties | ||
|---|---|---|---|---|
degree(d)
|
uint
|
|
||
|
||||
uniform(un)
|
boolean
|
|
||
|
||||
import maya.cmds as cmds # To create a new context that will create curves of degree 5: cmds.curveEPCtx( degree=5 ) # To query the degree of an existing context: cmds.curveEPCtx( 'curveEPCtx1', q=True, degree=True ) # To edit the degree of an existing context: cmds.curveEPCtx( 'curveEPCtx1', e=True, degree=7 )