예제 #1
0
        public static void RemoveTwoRingOfVertex(TriMesh mesh)
        {
            List <TriMesh.Vertex> selected = TriMeshUtil.RetrieveSelectedVertex(mesh);

            for (int i = 0; i < selected.Count; i++)
            {
                RemoveTwoRingOfVertex(selected[i]);
            }
            TriMeshUtil.FixIndex(mesh);
        }