View Single Post
# 9 30-08-2009 , 05:42 PM
Registered User
Join Date: Aug 2009
Posts: 6

Originally posted by bendingiscool
Just select your verts and give this a go (in the python tab):

Code:
import maya.cmds as mc

sel = mc.ls(sl = True)

for node in sel:
	vertPos = mc.xform(node, ws=True, q=True, t=True)
 	print vertPos

this, makes all the vertices around the selected vertice move as well....now i need to know how to undo this TT