Exemple #1
0
 /// <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);
     }
 }