summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/asymptote/examples/hyperboloidsilhouette.asy
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/doc/asymptote/examples/hyperboloidsilhouette.asy')
-rw-r--r--Master/texmf-dist/doc/asymptote/examples/hyperboloidsilhouette.asy9
1 files changed, 9 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/asymptote/examples/hyperboloidsilhouette.asy b/Master/texmf-dist/doc/asymptote/examples/hyperboloidsilhouette.asy
new file mode 100644
index 00000000000..1bb265de622
--- /dev/null
+++ b/Master/texmf-dist/doc/asymptote/examples/hyperboloidsilhouette.asy
@@ -0,0 +1,9 @@
+size(200);
+import solids;
+settings.render=0;
+settings.prc=false;
+
+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(hyperboloid.silhouette(64),blue);