blob: badaabaf86a789259d6c7d19f307a44528b0372d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
input modes.mf;
mode_def otcff = % OpenType ?
mode_param (pixels_per_inch,3600+3600); %OK 7200
mode_param (blacker, 0);
mode_param (fillin, 0);
mode_param (o_correction, 1);
mode_common_setup_;
enddef;
mode_def otcffTest =
mode_param (pixels_per_inch,3600);
mode_param (blacker, 0);
mode_param (fillin, 0);
mode_param (o_correction, 1);
mode_common_setup_;
enddef;
|