示例#1
0
文件: GMesh.cs 项目: msruzy/Gmsh.Net
 /// <summary>
 /// Clear the mesh, i.e. delete all the nodes and elements.
 /// </summary>
 public void Clear()
 {
     GMshNativeMethods.gmshModelMeshClear(ref ierr);
     if (ierr != 0)
     {
         throw new GMshException(ierr);
     }
 }