summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/metapost/featpost/example/repeated/graphexample.mp
blob: 6591ed5d0f9d5263660608c9f5e86c4f940093bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
% graphexample.mp
% L. Nobre G.
% 2003

%input featpost3Dplus2D;

input mp-tool;
 
beginfig(1);
    path thezigzag;
    thezigzag = zigzagfrontier( origin, (200,200), 17, 
			4, 20, 16, 12, blue, background );
    draw thezigzag;
endfig;

end;