metafun.mpiv /size: 1528 b    last modification: 2020-07-01 14:35
1%D \module
2%D   [       file=metafun.mp,
3%D        version=2000.07.15,
4%D          title=\CONTEXT\ \METAPOST\ graphics,
5%D       subtitle=format generation file,
6%D         author=Hans Hagen,
7%D           date=\currentdate,
8%D      copyright={PRAGMA / Hans Hagen \& Ton Otten}]
9%C
10%C This module is part of the \CONTEXT\ macro||package and is
11%C therefore copyrighted by \PRAGMA. See mreadme.pdf for
12%C details.
13
14%D First we input John Hobby's metapost plain file. However, because we want to
15%D prevent dependency problems and in the end even may use a patched version,
16%D we prefer to use a copy.
17
18boolean contextlmtxmode ; contextlmtxmode := if known fontmaking : false else: true fi;
19
20prologues := 0 ; % not used
21mpprocset := 1 ; % not used
22
23input "mp-base.mpiv" ;
24input "mp-tool.mpiv" ;
25input "mp-mlib.mpiv" ;
26input "mp-luas.mpiv" ;
27input "mp-cont.mpiv" ;
28input "mp-page.mpiv" ;
29input "mp-butt.mpiv" ;
30input "mp-shap.mpiv" ;
31input "mp-grph.mpiv" ;
32input "mp-grid.mpiv" ;
33input "mp-form.mpiv" ;
34input "mp-figs.mpiv" ;
35input "mp-func.mpiv" ;
36input "mp-node.mpiv" ;
37input "mp-apos.mpiv" ;
38input "mp-abck.mpiv" ;
39input "mp-blob.mpiv" ;
40
41string metafunversion ; metafunversion = "metafun iv " & mfun_timestamp;
42
43let normalend = end ;
44
45if known mplib :
46    def end = ; message "" ; message metafunversion ; message "" ; endinput  ; enddef ;
47    def bye = ; message "" ; message metafunversion ; message "" ; endinput  ; enddef ;
48else :
49    def end = ; message "" ; message metafunversion ; message "" ; normalend ; enddef ;
50fi ;
51