Go to: Synopsis. Return value. Keywords. Related. Flags. Python examples.
geomBind([bindMethod=uint], [falloff=float], [geodesicVoxelParams=[uint, boolean]], [maxInfluences=int])
Note: Strings representing object names and arguments must be separated by commas. This is not depicted in the synopsis.
geomBind is undoable, queryable, and editable.
This command is used to compute weights using the GeomBind lib.None
In query mode, return type is based on queried flag.
| Long name (short name) | Argument types | Properties | ||
|---|---|---|---|---|
bindMethod(bm)
|
uint
|
|
||
|
||||
falloff(fo)
|
float
|
|
||
|
||||
geodesicVoxelParams(gvp)
|
[uint, boolean]
|
|
||
|
||||
maxInfluences(mi)
|
int
|
|
||
|
||||
import maya.cmds as cmds # Compute geodesic voxel weights for skinCluster1 and skinCluster2. This # command will create a geomBind node connected to the two skinClusters # and their common bind pose. The geomBind node will maintain the # geodesic voxel binding parameters used (ie: falloff, resolution, etc.) # cmds.select( 'skinCluster1', r=True ) cmds.select( 'skinCluster2', add=True ) cmds.geomBind( bm=0, fo=0, mi=5 );