I’m using GLMakie to create 3D plots. I’d like to save these plots as .pdf or .svg files to achieve better quality. When I save them as .png, the resolution isn’t high enough, especially when I zoom in on the axes.
You can also save pdf or svg with using CairoMakie; save(...; backend = CairoMakie) but be aware that any mesh will cause rasterization of the vector graphic, which is likely if you’re making 3d plots. Vector graphics in general are not able to handle meshes or complex 3d compositions.