Resaltar el punto mínimo del trazado 3D

Resaltar el punto mínimo del trazado 3D

¿Cómo puedo mostrar este gráfico en un punto de vista diferente para poder resaltar el punto mínimo?

\documentclass[12pt]{article}

\usepackage{tikz}
\usepackage{pgfplots}
\pgfplotsset{compat=1.11}
\usetikzlibrary{math}
\usepackage{amsmath}
\begin{document}

\begin{tikzpicture}
\begin{axis}[
    xtick={1,2,3,4},
    ytick={1,2,3,4},
    ztick={0,50,100,150,200},
    xlabel={$r_{\mathrm{AB}}$\hspace{3px}(Å)},
    ylabel={$r_{\mathrm{BC}}$\hspace{3px}(Å)},
    zlabel={Energia $\left(\dfrac{\mathrm{kcal}}{\mathrm{mol}}\right)$}
]
\addplot3 [surf,shader=flat,draw=black,domain=1.0:5,y domain=1.0:5] {(32*(1-exp(-(x-2)))^2)+(32*(1-exp(-(y-2)))^2)};
\end{axis}
\end{tikzpicture}

\end{document}

ingrese la descripción de la imagen aquí

Respuesta1

Necesitas jugar con elview={azimuth}{elevation}

ingrese la descripción de la imagen aquí

\documentclass[12pt]{standalone}

\usepackage{tikz}
\usepackage{pgfplots}
\pgfplotsset{compat=1.11}
\usetikzlibrary{math}
\usepackage{amsmath}
\begin{document}

\foreach \viewX in {0,30,60,90}{
\begin{tikzpicture}
\begin{axis}[
    xtick={1,2,3,4},
    ytick={1,2,3,4},
    ztick={0,50,100,150,200},
    xlabel={$r_{\mathrm{AB}}$\hspace{3pt}(Å)},
    ylabel={$r_{\mathrm{BC}}$\hspace{3pt}(Å)},
    zlabel={Energia $\left(\dfrac{\mathrm{kcal}}{\mathrm{mol}}\right)$},
    view={\viewX}{30}, 
    title={view={\viewX},{30}},
]
\addplot3 [surf,shader=flat,draw=black,domain=1.0:5,y domain=1.0:5] {(32*(1-exp(-(x-2)))^2)+(32*(1-exp(-(y-2)))^2)};
\end{axis}
\end{tikzpicture}
}
\end{document}

información relacionada