예제 #1
0
파일: Mesh3D.cs 프로젝트: chandusekhar/Gip
 public static void ReverseNormals(MeshGeometry3D inputmesh)
 {
     System.Windows.Media.Int32Collection indices = inputmesh.TriangleIndices.Clone();
     inputmesh.TriangleIndices.Clear();
     foreach (var v in indices.Reverse())
     {
         inputmesh.TriangleIndices.Add(v);
     }
     indices = null;
 }