예제 #1
0
파일: GMesh.cs 프로젝트: msruzy/Gmsh.Net
 /// <summary>
 /// Recombine the mesh of the current model.
 /// </summary>
 public void Recombine()
 {
     GMshNativeMethods.gmshModelMeshRecombine(ref ierr);
     if (ierr != 0)
     {
         throw new GMshException(ierr);
     }
 }