diff options
Diffstat (limited to 'Master/texmf/doc/asymptote/examples/hyperboloidsilhouette.asy')
-rw-r--r-- | Master/texmf/doc/asymptote/examples/hyperboloidsilhouette.asy | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Master/texmf/doc/asymptote/examples/hyperboloidsilhouette.asy b/Master/texmf/doc/asymptote/examples/hyperboloidsilhouette.asy new file mode 100644 index 00000000000..1187208a670 --- /dev/null +++ b/Master/texmf/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(new real(real x) {return sqrt(1+x*x);}, + -2,2,20,operator..,X); +draw(hyperboloid.silhouette(64),blue); |