예제 #1
0
파일: GMesh.cs 프로젝트: msruzy/Gmsh.Net
 /// <summary>
 /// Set the order of the elements in the mesh of the current model to `order'.
 /// </summary>
 public void SetOrder(int order)
 {
     GMshNativeMethods.gmshModelMeshSetOrder(order, ref ierr);
     if (ierr != 0)
     {
         throw new GMshException(ierr);
     }
 }