From cf64813a303ee604d030f86c9aaa6e3778d52019 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Janek=20Warcho=C5=82?= Date: Fri, 18 Mar 2011 11:33:55 +0100 Subject: [PATCH] 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. --- mf/feta-flags.mf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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; -- 2.39.2