diff options
Diffstat (limited to 'Build/source/utils/asymptote/examples/coag.asy')
-rw-r--r-- | Build/source/utils/asymptote/examples/coag.asy | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Build/source/utils/asymptote/examples/coag.asy b/Build/source/utils/asymptote/examples/coag.asy new file mode 100644 index 00000000000..de976cb145b --- /dev/null +++ b/Build/source/utils/asymptote/examples/coag.asy @@ -0,0 +1,16 @@ +size(0,200); +import graph; + +pair z0=(0,0); +pair m0=(0,1); +pair tg=(1.5,0); +pair mt=m0+tg; +pair tf=(3,0); + +draw(m0--mt{dir(-70)}..{dir(0)}2tg+m0/4); +xtick("$T_g$",tg,N); +label("$M(t)$",mt,2NE); +labely("$M_0$",m0); + +xaxis(Label("$t$",align=2S),Arrow); +yaxis(Arrow); |