Ejemplo n.º 1
0
 /// <summary>Reverses the direction of the mesh.</summary>
 /// <param name="vertexNormals">If true, vertex normals will be reversed.</param>
 /// <param name="faceNormals">If true, face normals will be reversed.</param>
 /// <param name="faceOrientation">If true, face orientations will be reversed.</param>
 public void Flip(bool vertexNormals, bool faceNormals, bool faceOrientation)
 {
     mesh.Flip(vertexNormals, faceNormals, faceOrientation);
 }