Docs: use lists for nested overrides.
[lilypond.git] / mf / feta-puntje.mf
blob5466c24668ad4e323fe34d6cbb5470eb1a486116
2 % feta-puntke.mf -- a duration dot
4 % source file of the GNU LilyPond music typesetter
6 % (c) 1997--2007 Han-Wen Nienhuys <hanwen@xs4all.nl>
8 fet_begingroup ("dots");
10 save dot_diam;
12 2 dot_diam# = staff_space# - stafflinethickness#;
13 define_whole_blacker_pixels (dot_diam);
15 fet_beginchar ("duration dot", "dot");
16         pickup pencircle scaled dot_diam;
18         lft x0 = 0;
19         top y0 = vround (.5 dot_diam);
21         drawdot z0;
23         set_char_box (0, dot_diam#, .5 dot_diam#, .5 dot_diam#);
24 fet_endchar;
26 fet_endgroup ("dots");