Example #1
0
 /// <summary>
 /// Unpartition the mesh of the current model.
 /// </summary>
 public void Unpartition()
 {
     GMshNativeMethods.gmshModelMeshUnpartition(ref ierr);
     if (ierr != 0)
     {
         throw new GMshException(ierr);
     }
 }