A Chanel box, sounds something you would give to your girlfriend LOLOriginally posted by BennyK
Display>UI Elements> Chanel Box
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 TTOriginally 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