World position of vtx using MVector
- Get link
- X
- Other Apps
import maya.cmds as mc;
from maya.OpenMaya import MVector;
verts = mc.filterExpand( poly + ".vtx[*]", sm=31 );
for vtx in verts:
pvec = MVector( *mc.pointPosition( vtx ) );
- Get link
- X
- Other Apps
Comments
Post a Comment