/// <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 static void Merge(string fileName) { Gmsh_Warp.GmshMerge(fileName, ref _staticreff); CheckException(MethodBase.GetCurrentMethod().MethodHandle); }