How to draw Flamm's paraboloid ?
tikz,pstricks,metapost,asymptote
\documentclass[12pt]{article}
\usepackage{mathtools,amssymb}
\usepackage{pgfplots}
\pgfplotsset{compat=newest,width=8cm}
\begin{document}
The spatial curvature of the Schwarzschild solution for $r > r_s$ .....
$w=2\sqrt{r_s(r-r_w)}$
For this exemple: w=z, r_s=y and r=x.
\begin{tikzpicture}
\begin{axis}
\addplot3{2sqrt(y(x-y))};
\end{axis}
\end{tikzpicture}
\end{document}
