I am trying to create an SVG beamer presentation that will eventually embed videos using media4svg. While the video embedding works great, 3D plots are giving me trouble. Any ideas to export the following Beamer slide to an SVG file without compromising the 3D plot?
\documentclass{beamer}
\usepackage{pgfplots}
\pgfplotsset{compat=1.18}
\begin{document}
\begin{frame}
\begin{tikzpicture}
\begin{axis}
\addplot3[ surf, shader=interp, samples=10, domain=0:1, ]{x^2*y};
\end{axis}
\end{tikzpicture}
\end{frame}
\end{document}
The only ways I have been able to do it is using dvisvgm with shader=flat or using ImageMagick's convert tool that gives a rasterized SVG. Neither of those options are ideal!