Simple codes:
pol = Polygon[{{1, 0}, {0, Sqrt[3]}, {-1, 0}}];
aa = Graphics[{Red, Opacity[0.2], EdgeForm[], pol}]
Export["cc.pdf", aa]
I just want to remove the edges when exporting it in pdf format.
Simple codes:
pol = Polygon[{{1, 0}, {0, Sqrt[3]}, {-1, 0}}];
aa = Graphics[{Red, Opacity[0.2], EdgeForm[], pol}]
Export["cc.pdf", aa]
I just want to remove the edges when exporting it in pdf format.
12.3.1 for Microsoft Windows (64-bit) (June 24, 2021). As suggested in this answer, useGraphics[{Red, Opacity[0.2], EdgeForm[AbsoluteThickness[-1]], pol}]. – Domen Jan 19 '22 at 11:13