summaryrefslogtreecommitdiff
path: root/graphics/asymptote/examples/hyperboloidsilhouette.asy
diff options
context:
space:
mode:
Diffstat (limited to 'graphics/asymptote/examples/hyperboloidsilhouette.asy')
-rw-r--r--graphics/asymptote/examples/hyperboloidsilhouette.asy9
1 files changed, 9 insertions, 0 deletions
diff --git a/graphics/asymptote/examples/hyperboloidsilhouette.asy b/graphics/asymptote/examples/hyperboloidsilhouette.asy
new file mode 100644
index 0000000000..1bb265de62
--- /dev/null
+++ b/graphics/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);