diff options
Diffstat (limited to 'Master/texmf/doc/asymptote/examples/hyperboloidsilhouette.asy')
-rw-r--r-- | Master/texmf/doc/asymptote/examples/hyperboloidsilhouette.asy | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Master/texmf/doc/asymptote/examples/hyperboloidsilhouette.asy b/Master/texmf/doc/asymptote/examples/hyperboloidsilhouette.asy index 1187208a670..1bb265de622 100644 --- a/Master/texmf/doc/asymptote/examples/hyperboloidsilhouette.asy +++ b/Master/texmf/doc/asymptote/examples/hyperboloidsilhouette.asy @@ -4,6 +4,6 @@ settings.render=0; settings.prc=false; currentprojection=perspective(4,4,3); -revolution hyperboloid=revolution(new real(real x) {return sqrt(1+x*x);}, - -2,2,20,operator..,X); +revolution hyperboloid=revolution(graph(new triple(real z) { + return (sqrt(1+z*z),0,z);},-2,2,20,operator ..),axis=Z); draw(hyperboloid.silhouette(64),blue); |