Ejemplo n.º 1
0
 /// <summary>
 /// Smooth the mesh of the current model.
 /// </summary>
 public void Smooth()
 {
     GMshNativeMethods.gmshModelMeshSmooth(ref ierr);
     if (ierr != 0)
     {
         throw new GMshException(ierr);
     }
 }