Ejemplo n.º 1
0
                /// <summary>
                /// Remove the entities `dimTags'. If `recursive' is true, remove all the
                /// entities on their boundaries, down to dimension 0.
                /// </summary>
                public static void Remove(ValueTuple <int, int>[] dimTags, bool recursive = false)
                {
                    var dimarray = dimTags.ToIntArray();

                    Gmsh_Warp.GmshModelGeoRemove(dimarray, dimarray.LongLength, Convert.ToInt32(recursive), ref Gmsh._staticreff);
                    Gmsh.CheckException(MethodBase.GetCurrentMethod().MethodHandle);
                }