0
pic11 = Plot3D[Sin[x + y^2], {x, -3, 3}, {y, -2, 2}];Export["ff.svg", pic11]

The generated svg diagram is very vague, why is this? How to convert the map generated by Plot3D into svg format?

Seeds
  • 65
  • 6
  • 3D objects are Rasterized before being converted into SVG, which is why you get the output that you do. Most 2D plots aren't rasterised, so if you do pic11 = Plot[Sin[x], {x, -3, 3}]; Export["ff.svg", pic11] it's a nice scaleable vector image. – Carl Lange Jul 07 '18 at 11:31

1 Answers1

1

From the documentation page onSVG:

enter image description here

Note that the last bullet point says the format is intended two-dimensional graphics.

m_goldberg
  • 107,779
  • 16
  • 103
  • 257