コード例 #1
0
 /// <summary>
 /// Merge a file. Equivalent to the `File->Merge' menu in the Gmsh app. Handling
 /// of the file depends on its extension and/or its contents. Merging a file with
 /// model data will add the data to the current model.
 /// </summary>
 public void Merge(string filename)
 {
     GMshNativeMethods.gmshMerge(filename, ref ierr);
     if (ierr != 0)
     {
         throw new GMshException(ierr);
     }
 }