summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/source/metafont/mftoeps/m2esamp/sample1b.mf
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/source/metafont/mftoeps/m2esamp/sample1b.mf')
-rw-r--r--Master/texmf-dist/source/metafont/mftoeps/m2esamp/sample1b.mf28
1 files changed, 0 insertions, 28 deletions
diff --git a/Master/texmf-dist/source/metafont/mftoeps/m2esamp/sample1b.mf b/Master/texmf-dist/source/metafont/mftoeps/m2esamp/sample1b.mf
deleted file mode 100644
index 499650af1fa..00000000000
--- a/Master/texmf-dist/source/metafont/mftoeps/m2esamp/sample1b.mf
+++ /dev/null
@@ -1,28 +0,0 @@
-%%%%
-%%%% This file belongs to the MFTOEPS package.
-%%%%
-% ---
-% SAMPLE1B.MF
-% ---
-input polygons; % the definition of the |regular_polygon| function
-input mftoeps;
-eps_mode_setup;
-beginchar(0,2cm#,2cm#,0);
- path P[ ]; % ,,room'' for polygons
- N:=25; % the number of polygons
-% preparing:
- for i:=1 upto N:
- P[i]:=regular_polygon(7)
- scaled ((i/N)**2*w) rotated (i/N*360) shifted (.5w,.5h);
- endfor;
-% exporting:
- find_BB for i:=1 upto N-1: P[i], endfor P[N];
- write_preamble jobname;
-% Adobe Illustrator likes to control the orientation of paths
- fill_C
- for i:=1 upto N-1:
- if odd(N-i+1): pos_turn else: neg_turn fi P[i],
- endfor pos_turn P[N];
- write_postamble;
-endchar;
-end.