/// <summary> /// Mirror the model entities `dimTag', with respect to the plane of equation /// `a' * x + `b' * y + `c' * z + `d' = 0. (This is a synonym for `mirror', /// which will be deprecated in a future release.) /// </summary> public static void Symmetrize(ValueTuple <int, int>[] dimTags, double a, double b, double c, double d) { var list = dimTags.ToIntArray(); Gmsh_Warp.GmshModelGeoSymmetrize(list, list.LongLength, a, b, c, d, ref Gmsh._staticreff); Gmsh.CheckException(MethodBase.GetCurrentMethod().MethodHandle); }