示例#1
0
文件: GMesh.cs 项目: msruzy/Gmsh.Net
 /// <summary>
 /// Smooth the mesh of the current model.
 /// </summary>
 public void Smooth()
 {
     GMshNativeMethods.gmshModelMeshSmooth(ref ierr);
     if (ierr != 0)
     {
         throw new GMshException(ierr);
     }
 }