From: Janek WarchoĊ‚ Date: Fri, 18 Mar 2011 10:33:55 +0000 (+0100) Subject: including blot_diameter in calculating upstem flag lengths X-Git-Tag: release/2.13.56-1~2^2~3 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=cf64813a303ee604d030f86c9aaa6e3778d52019;p=lilypond.git including blot_diameter in calculating upstem flag lengths Doing so is needed in case of 32nd flag, because after changing 32nd stem length it touches staff line. In case of 64th and 128th this isn't really needed, but i added it for consistency's sake. --- diff --git a/mf/feta-flags.mf b/mf/feta-flags.mf index 104bab3ae8..95cedb1a82 100644 --- a/mf/feta-flags.mf +++ b/mf/feta-flags.mf @@ -201,7 +201,7 @@ fet_beginchar ("32nd Flag (up)", "u5"); save flagspace, total_depth, flag_count; flag_count = 3; - total_depth# = 4.25 staff_space#; + total_depth# = 4.25 staff_space# - blot_diameter# / 2; flare = .85 staff_space; flagspace# = .87 staff_space#; hip_depth_ratio = .72; @@ -236,7 +236,7 @@ fet_beginchar ("64th Flag (up)", "u6"); save flagspace, total_depth, flag_count; flag_count = 4; - total_depth# = 5.25 staff_space#; + total_depth# = 5.25 staff_space# - blot_diameter# / 2; flare = .85 staff_space; flagspace# = .9 staff_space#; hip_depth_ratio = .72; @@ -273,7 +273,7 @@ fet_beginchar ("128th Flag (up)", "u7"); save flagspace, total_depth, flag_count; flag_count = 5; - total_depth# = 6.25 staff_space#; + total_depth# = 6.25 staff_space# - blot_diameter# / 2; flare = .85 staff_space; flagspace# = .93 staff_space#; hip_depth_ratio = .72;