コード例 #1
0
 /// <summary>
 /// Initialize Gmsh.
 /// </summary>
 public GMsh()
 {
     GMshNativeMethods.gmshInitialize(0, null, 1, ref ierr);
     if (ierr != 0)
     {
         throw new GMshException(ierr);
     }
 }