summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/metapost/featpost/example/graphexample.mp
blob: 2dd9b2b97359262d78ef736805bba924bce980ad (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;