I have a 3d graph which has a 'small' bump in the middle of it that is quite hard to notice due to the shading. I was wondering if it would be possible to make it so that the change in the colour of the shading is more dramatic (i.e it goes from blue to red faster). If not then perhaps changing the order of the shading (red --> low, blue --> high) so it is more noticeable, thanks.
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{pgfplots}
\usepackage{tikz}
\newcommand{\plotpotential}[2]{
\begin{axis}[view={70}{70}]
\addplot3[surf,shader=flat, draw=black, z buffer=sort, samples=30,domain=-400:400]
{-3933.8*(x^2+y^2)+0.0325*(x^2+y^2)^2};
\end{axis}
}
\begin{document}
\begin{figure}
\begin{tikzpicture}
{\plotpotential{\polangle}{\azangle}};
\end{tikzpicture}
\end{figure}
\end{document}
