summaryrefslogtreecommitdiff
path: root/Master/texmf/doc/asymptote/examples/sinxlex.asy
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf/doc/asymptote/examples/sinxlex.asy')
-rw-r--r--Master/texmf/doc/asymptote/examples/sinxlex.asy24
1 files changed, 0 insertions, 24 deletions
diff --git a/Master/texmf/doc/asymptote/examples/sinxlex.asy b/Master/texmf/doc/asymptote/examples/sinxlex.asy
deleted file mode 100644
index 912fa3c889b..00000000000
--- a/Master/texmf/doc/asymptote/examples/sinxlex.asy
+++ /dev/null
@@ -1,24 +0,0 @@
-import geometry;
-
-size(0,100);
-real theta=30;
-
-pair A=(0,0);
-pair B=dir(theta);
-pair C=(1,0);
-pair D=(1,Tan(theta));
-pair E=(Cos(theta),0);
-
-filldraw(A--C{N}..B--cycle,lightgrey);
-draw(B--C--D--cycle);
-draw(B--E);
-
-draw("$x$",arc(C,A,B,0.7),RightSide,Arrow,PenMargin);
-
-dot("$A$",A,W);
-dot("$B$",B,NW);
-dot("$C$",C);
-dot("$D$",D);
-dot(("$E$"),E,S);
-label("$1$",A--B,LeftSide);
-