]> git.donarmstrong.com Git - lilypond.git/blobdiff - mf/feta-puntje.mf
Run `make grand-replace'.
[lilypond.git] / mf / feta-puntje.mf
index 7675befaee385232bb0c72745d03c5601052b717..526fe2fe1040b19f7adc64b5101dea3e4e916646 100644 (file)
@@ -1,13 +1,26 @@
-fet_begingroup("dots");
+%
+% feta-puntke.mf -- a duration dot
+%
+% source file of the GNU LilyPond music typesetter
+%
+% (c) 1997--2008 Han-Wen Nienhuys <hanwen@xs4all.nl>
 
-fet_beginchar("duration dot","dot", "dot")
-       save dot_diam;
-       2 dot_diam# = interline# - stafflinethickness#;
-       define_pixels(dot_diam)
+fet_begingroup ("dots");
+
+save dot_diam;
+
+2 dot_diam# = staff_space# - stafflinethickness#;
+define_whole_blacker_pixels (dot_diam);
+
+fet_beginchar ("duration dot", "dot");
        pickup pencircle scaled dot_diam;
-       draw (dot_diam/2,0);
-       set_char_box(0, dot_diam#, dot_diam#/2, dot_diam#/2);
-fet_endchar;
 
+       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");
+fet_endgroup ("dots");