pymel.core.context.targetWeldCtx

static context.targetWeldCtx(*args, **kwargs)

Create a new context to weld vertices together on a poly object. In query mode, return type is based on queried flag.

Flags:
Long name (short name) Argument Types Properties
exists (ex) bool  
   
image1 (i1) unicode  
   
image2 (i2) unicode  
   
image3 (i3) unicode  
   
mergeToCenter (mtc) bool ../../../_images/create.gif ../../../_images/query.gif ../../../_images/edit.gif
 

If mergeToCenter is set to true then the source and target vertices’s will be moved to the center before doing the merge. If set to false the source vertex will be moved to the target vertex before doing the merge. Flag can have multiple arguments, passed either as a tuple or a list.

Derived from mel command maya.cmds.targetWeldCtx

Example:

import pymel.core as pm

# To create a new target weld context:
pm.targetWeldCtx()
# Result: u'targetWeldCtx1' #

# To query if it is set to merge to the center:
pm.targetWeldCtx('targetWeldCtx1', q=True, mergeToCenter=True )
# Result: 0 #

# To set it to merge at the target:
pm.targetWeldCtx('targetWeldCtx1', e=True, mergeToCenter=False )
# Result: u'targetWeldCtx1' #

Previous topic

pymel.core.context.superCtx

Next topic

pymel.core.context.texLatticeDeformContext

Core

Core Modules

Other Modules

This Page