]> git.donarmstrong.com Git - lilypond.git/commitdiff
tweak for bottom of flat sign.
authorhanwen <hanwen>
Sun, 6 Jul 2003 20:45:17 +0000 (20:45 +0000)
committerhanwen <hanwen>
Sun, 6 Jul 2003 20:45:17 +0000 (20:45 +0000)
lo-res fixes.

NEWS
mf/feta-toevallig.mf

diff --git a/NEWS b/NEWS
index fa782857fa1a4103a68ab537e257f7debdddcb27..de69b094d0667b33a6806fc8e220433d32bbbbb6 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -14,7 +14,7 @@ LilyPond identifiers in Scheme, and use Scheme expressions instead of
 LilyPond identifiers.
 
 ** The internal representation of music has been cleaned up completely
-converted to Scheme data structure.  The representation may be
+and converted to Scheme data structures.  The representation may be
 exported as XML.
 
 ** A new syntax has been added for chords:
@@ -43,10 +43,8 @@ The syntax for this code is
 
        \applycontext #SCHEME-FUNCTION
 
-
-** New algorithms for chord-name formatting have been installed. This
-algorithm can be tuned and has an ergonomic syntax for entering
-exceptions.
+** New algorithms for chord-name formatting have been installed. They
+can be tuned and have ergonomic syntax for entering exceptions.
 
 ** Texts may now be put on multimeasure rests, eg.
 
@@ -85,7 +83,7 @@ The syntax is
 ** Metronome markings are printed when a
 \tempo command is processed. 
 
-** Fingerings can be horizontally on chords.
+** Fingerings can be put on chords horizontally.
 
 ** The appearance of various glyphs has been fine-tuned 
 
index ea85a29c55e9d7fa498517a3755997403983b04e..944ee8a278f08f9cebf1304cca231aaf58e2e14c 100644 (file)
@@ -191,12 +191,16 @@ def draw_meta_flat(expr xcenter, w, crook_fatness) =
        fi
        crook_thinness = 1.3 stafflinethickness;
        top_crook_thinness = 1.65 stafflinethickness;
-       top_stem_thick# = 2.2 stafflinethickness#;
+
+       % actually, this used to be 2.2 stafflinethickness,
+       % that looks very awful in 600dpi.
+       % TODO: a better (resolution indepedendent) fix  
+       
+       top_stem_thick# = 2.3 stafflinethickness#;
        define_blacker_pixels (top_stem_thick);
        bottom_overshoot = stafflinethickness;
        bottom_stem_thick = 1.2 stafflinethickness;
 
-
        z1 = (0, 2 staff_space) + center - (0, stafflinethickness/2
                + clearing);
        z2 =  (0, - 1/2 staff_space - stafflinethickness/2 )+  center;
@@ -235,19 +239,21 @@ def draw_meta_flat(expr xcenter, w, crook_fatness) =
 
        z7 = z8 + whatever * bot_crook_dir + crook_thinness  * (bot_crook_dir rotated 90);
 
-       x7 = .4 [x11, x8];
+       x7 = .1 [x3r, x8];
 
        penlabels(range 0 thru 10);
 
-       y10 = -1/5 staff_space;
+       y10 = -1/10 staff_space;
 %      draw_staff (-2, 2, 0.5);
 %      draw_staff (-2, 2, 0.0);
 
        unfill z3r{z3r-z10} .. z4r{right} .. z5r{down}
 
                ..  z7{- bot_crook_dir}
-               & z7 .. tension 1.3
-               .. z10{z3r-z10}  -- cycle;
+               & z7 % .. tension 1.3
+               .. z10{z3r-z10}
+
+               -- cycle;
        fill z2l{down}
                
                .. z11{right}
@@ -255,7 +261,7 @@ def draw_meta_flat(expr xcenter, w, crook_fatness) =
                .. z5l{up}
                .. z4l{left} .. z3l -- cycle;
                
-       labels(11);
+       labels(10);
 enddef;