hi folks I’m trying to move my selected verts inward as below.
this is what I have at the moment to move in a world z axis but I’m a bit stuck to achieve the above .
BitArray SelVerts;
pmesh.getVertexSel(SelVerts);
for (int i = 0; i < pmesh.numv; ++i)
{
if (SelVerts[i])
{
pmesh.v[i].p.z += 10;
}
}

