hi guys, 

I'm working on a deformer I don't want to use MItGeometry to iterate on my 
vertices (I need to work in a different order).
So instead, I'd like to directly query the deformerSet and get the 
component list from there, e.g.

MObject oThis = thisMObject();
MFnGeometryFilter fnThis(oThis);
MFnSet fnSet(fnThis.deformerSet());
MSelectionList members;
fnSet.getMembers(members, false);

But calling fnSet.getMembers() results in a cycle (but no crash) inside 
maya.
1. Any idea how I could get the components affected by my deformer, if I 
can't do it this way?
2. I'd like to understand why this is creating a cycle... the deformerSet 
is not related to the outGeom, this is just a set, so how querying its 
members can introduce a cycle?

Thanks for your help =]


-- 
You received this message because you are subscribed to the Google Groups 
"Python Programming for Autodesk Maya" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to python_inside_maya+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/python_inside_maya/0e6c5554-dc3a-43e9-8933-19607afed753o%40googlegroups.com.

Reply via email to