summaryrefslogtreecommitdiff
path: root/Master/texmf/doc/asymptote/examples/sacone3D.asy
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf/doc/asymptote/examples/sacone3D.asy')
-rw-r--r--Master/texmf/doc/asymptote/examples/sacone3D.asy14
1 files changed, 0 insertions, 14 deletions
diff --git a/Master/texmf/doc/asymptote/examples/sacone3D.asy b/Master/texmf/doc/asymptote/examples/sacone3D.asy
deleted file mode 100644
index d8f3aa373d3..00000000000
--- a/Master/texmf/doc/asymptote/examples/sacone3D.asy
+++ /dev/null
@@ -1,14 +0,0 @@
-import solids;
-
-size(0,75);
-real r=1;
-real h=1;
-
-revolution R=cone(r,h);
-
-draw(surface(R),lightgreen+opacity(0.5),render(compression=Low));
-pen edge=blue+0.25mm;
-draw("$\ell$",(0,r,0)--(0,0,h),W,edge);
-draw("$r$",(0,0,0)--(r,0,0),red+dashed);
-draw((0,0,0)--(0,0,h),red+dashed);
-dot(h*Z);