ComplexRegionPlot[ { Abs[z - 2 - 2 I] <= 2, 0 <= Arg[z] <= Pi/4, Re[z] <= 3, Abs[z - 2 - 2 I] <= 2 && 0 <= Arg[z] <= Pi/4 && Re[z] <= 3 }, {z, 0, 5 + 5 I}, GridLines -> {{0, 1, 2, 3, 4, 5}, {0, 1, 2, 3, 4, 5}}, PlotLegends -> "Expressions", AspectRatio -> 1]
Still want to save as a vector graphics in PDF. But how would I get ride of the "grid in space"? i.e. get a filled version, as shown in MMA?


Antialiasing -> Falsedoes not really work in my case though... – CasperYC Nov 09 '21 at 13:00Export["testCPR-Mesh.pdf", MapAt[cleanRegionPlot, cpr, 1], "PDF"](theMapAtis because you have a legend). – chuy Nov 09 '21 at 17:07