This problem does not exist in 13.2.1 anymore
I often need to export some svg with mma, but RegionPlot's diagrams will have some extra mesh after exporting SVG:
p = RegionPlot[x^2 + y^3 < 2, {x, -2, 2}, {y, -2, 2}];
Export["p.svg", p]
Not only does this make SVG very ugly, but it can lead to very large files. And is this a bug of MMA?




p = RegionPlot[x^2 + y^3 < 2, {x, -2, 2}, {y, -2, 2}, PlotStyle -> Cyan]; Export["p.svg", p]– cvgmt Jan 07 '22 at 10:59