summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/asymptote/examples/triangle.asy
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/doc/asymptote/examples/triangle.asy')
-rw-r--r--Master/texmf-dist/doc/asymptote/examples/triangle.asy12
1 files changed, 12 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/asymptote/examples/triangle.asy b/Master/texmf-dist/doc/asymptote/examples/triangle.asy
new file mode 100644
index 00000000000..60388a78515
--- /dev/null
+++ b/Master/texmf-dist/doc/asymptote/examples/triangle.asy
@@ -0,0 +1,12 @@
+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);