Hey yo, 

im trying to do multiple poly bridge commands over a large mesh. So specific 
edges need to be bridged with specific other edges. 

The problem is i cant seem to just write a long list of seperate polyBridgeEdge 
command lines because each time the edges that are bridged become selected, 
making the next polyBridgeEdge command not work. Each time the selection needs 
to be cleared like this:

cmds.polyBridgeEdge( 'polySurface1.e[530]','polySurface1.e[138]',divisions=0 )
cmds.select( clear=True )
cmds.polyBridgeEdge( 'polySurface1.e[0]','polySurface1.e[5]',divisions=0 )
cmds.select( clear=True )
cmds.polyBridgeEdge( 'polySurface1.e[536]','polySurface1.e[185]',divisions=0 )
cmds.select( clear=True )

does anyone know if there is a way to execute the polyBridgeEdge command 
without any edges being selected. Removing all the cmds.select commands would 
really cleanup my script ;)

thanks alot for your help, 
Sam

-- 
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 [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/python_inside_maya/239bc3d4-0223-4317-b981-8973f9030714%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to