This attach command is used to attach curves. Once the curves are attached, there will be multiple knots at the joined point(s). These can be kept or removed if the user wishes. If there are two curves, the end of the first curve is attached to the start of the second curve. If there are more than two curves, closest endpoints are joined. Note: if the command is done with Keep Original off, the first curve is replaced by the attached curve. All other curves will remain, the command does not delete them.
Long name (short name) | Argument Types | Properties | |
---|---|---|---|
blendBias (bb) | float | ||
|
|||
blendKnotInsertion (bki) | bool | ||
If set to true, insert a knot in one of the original curves (relative position given by the parameter attribute below) in order to produce a slightly different effect.Default:false |
|||
caching (cch) | bool | ||
|
|||
constructionHistory (ch) | bool | ||
|
|||
keepMultipleKnots (kmk) | bool | ||
|
|||
method (m) | int | ||
|
|||
name (n) | unicode | ||
|
|||
nodeState (nds) | int | ||
|
|||
object (o) | bool | ||
|
|||
parameter (p) | float | ||
|
|||
replaceOriginal (rpo) | bool | ||
|
|||
reverse1 (rv1) | bool | ||
If true, reverse the first input curve before doing attach. Otherwise, do nothing to the first input curve before attaching. NOTE: setting this attribute to random values will cause unpredictable results and is not supported.Default:false |
|||
reverse2 (rv2) | bool | ||
If true, reverse the second input curve before doing attach. Otherwise, do nothing to the second input curve before attaching. NOTE: setting this attribute to random values will cause unpredictable results and is not supported.Default:false |
Derived from mel command maya.cmds.attachCurve
Example:
import pymel.core as pm
import maya.cmds as cmds
# Attach the curves and remove the multiple knots:
pm.attachCurve( 'curve1', 'curve2', kmk=False )