Created
February 24, 2014 19:49
-
-
Save jhoolmans/9195634 to your computer and use it in GitHub Desktop.
Revisions
-
jhoolmans created this gist
Feb 24, 2014 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,38 @@ import maya.cmds as mc import maya.OpenMaya as om def softSelection(): selection = om.MSelectionList() softSelection = om.MRichSelection() om.MGlobal.getRichSelection(softSelection) softSelection.getSelection(selection) dagPath = om.MDagPath() component = om.MObject() iter = om.MItSelectionList( selection,om.MFn.kMeshVertComponent ) elements = [] while not iter.isDone(): iter.getDagPath( dagPath, component ) dagPath.pop() node = dagPath.fullPathName() fnComp = om.MFnSingleIndexedComponent(component) for i in range(fnComp.elementCount()): elements.append([node, fnComp.element(i), fnComp.weight(i).influence()] ) iter.next() return elements def createSoftCluster(): softElementData = softSelection() selection = ["%s.vtx[%d]" % (el[0], el[1])for el in softElementData ] mc.select(selection, r=True) cluster = mc.cluster(relative=True) for i in range(len(softElementData)): mc.percent(cluster[0], selection[i], v=softElementData[i][2]) mc.select(cluster[1], r=True) createSoftCluster()