Пример #1
0
 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);
     }
 }