it seems hard to export 3D vector image in Mathematica 13.1, code like
fig=Graphics3D[{{Ball[]}}]
Export["3d_ball.pdf",fig,"AllowRasterization"->False]
The option "AllowRasterization"->False doesn't work, so if anyone knows how to solve this problem, I want to use vector image in Ai, thanks a lot.
Export["3d_ball.pdf", Graphics[Inset[fig], ImageSize -> 1000]]see export-plot3d-in-mathematica-10-1-is-rasterized-by-default for reference – Nasser Nov 14 '22 at 02:09ImageResolution -> 300or similar). I know this might not be what you wanted to hear, but this is the best advice that can be give here. – Szabolcs Nov 14 '22 at 10:03