summaryrefslogtreecommitdiff
path: root/Master/texmf/doc/asymptote/examples/triangle.asy
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf/doc/asymptote/examples/triangle.asy')
-rw-r--r--Master/texmf/doc/asymptote/examples/triangle.asy12
1 files changed, 0 insertions, 12 deletions
diff --git a/Master/texmf/doc/asymptote/examples/triangle.asy b/Master/texmf/doc/asymptote/examples/triangle.asy
deleted file mode 100644
index 60388a78515..00000000000
--- a/Master/texmf/doc/asymptote/examples/triangle.asy
+++ /dev/null
@@ -1,12 +0,0 @@
-size(0,100);
-import geometry;
-
-triangle t=triangle(b=3,alpha=90,c=4);
-
-dot((0,0));
-
-draw(t);
-draw(rotate(90)*t,red);
-draw(shift((-4,0))*t,blue);
-draw(reflect((0,0),(1,0))*t,green);
-draw(slant(2)*t,magenta);