blob: 826dabe2c86cc6a5e68407b395e03e30c533b50a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
% -%-Fundamental-%- -*-Metafont-*-
% parmesan-dots.mf -- dot vaticana
%
% source file of LilyPond's pretty-but-neat music font
%
% (c) 2006--2009 Juergen Reuter <reuter@ipd.uka.de>
%
fet_begingroup ("dots");
save dot_diam;
3 dot_diam# = staff_space# - stafflinethickness#;
define_whole_blacker_pixels (dot_diam);
fet_beginchar ("duration dot", "dotvaticana");
pickup pencircle scaled dot_diam;
lft x0 = 0;
top y0 = vround (.5 dot_diam);
drawdot z0;
set_char_box (0, dot_diam#, .5 dot_diam#, .5 dot_diam#);
fet_endchar;
fet_endgroup ("dots");
|