rename plugins/ikiwiki/directive/asymptote.mdwn to plugins/contrib/asymptote/ikiwiki...
[ikiwiki] / doc / plugins / contrib / asymptote / ikiwiki / directive / asymptote.mdwn
1 The `asymptote` directive is supplied by the [[!iki plugins/asymptote
2 desc=asymptote]] plugin.
3
4 This directive allows embedding [asymptote](http://asymptote.sourceforge.net/)
5 diagrams in a page. Example usage:
6
7         \[[!asymptote src="""
8         import geometry;
9         unitsize(1cm);
10         triangle t = triangle((0,0), (4,0), (0.5,2));
11         show(La="$D$", Lb="$E$", Lc="", t);
12         dot(t.A^^t.B^^t.C);
13         point pD = midpoint(t.BC); dot(pD);
14         point pE = midpoint(t.AC); dot(pE);
15         draw(pD--pE);
16         point A_ = (pD-t.A)*2+t.A; dot("$A'$", A_, NE);
17         draw(t.B--A_--t.C, dashed);
18         draw(t.A--A_, dashed);
19         point E_ = midpoint(line(t.B,A_)); dot(Label("$E'$", E_, E));
20         draw(E_--pD, dashed);
21         """]]
22
23 The `asymptote` directive supports the following parameters:
24
25 - `src` - The asymptote source code to render.
26
27 [[!meta robots="noindex, follow"]]