diff options
Diffstat (limited to 'Master/texmf/doc/asymptote/examples/hyperboloid.asy')
-rw-r--r-- | Master/texmf/doc/asymptote/examples/hyperboloid.asy | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/Master/texmf/doc/asymptote/examples/hyperboloid.asy b/Master/texmf/doc/asymptote/examples/hyperboloid.asy deleted file mode 100644 index 22f3b3d80b0..00000000000 --- a/Master/texmf/doc/asymptote/examples/hyperboloid.asy +++ /dev/null @@ -1,8 +0,0 @@ -size(200); -import solids; - -currentprojection=perspective(4,4,3); -revolution hyperboloid=revolution(graph(new triple(real z) { - return (sqrt(1+z*z),0,z);},-2,2,20,operator ..),axis=Z); -draw(surface(hyperboloid),green,render(compression=Low,merge=true)); -draw(hyperboloid,6,blue,longitudinalpen=nullpen); |