示例#1
0
文件: GMesh.cs 项目: msruzy/Gmsh.Net
 public void ClassifySurfaces(double angle, bool boundary = true, bool forReparametrization = false)
 {
     angle *= Math.PI / 180;
     GMshNativeMethods.gmshModelMeshClassifySurfaces(angle, boundary.Toint(), forReparametrization.Toint(), ref ierr);
     if (ierr != 0)
     {
         throw new GMshException(ierr);
     }
 }