X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fline-interface.cc;h=2b4639c5d216350be99e713421d5d635319573d5;hb=85902ccc9c481c2f992676ecff060e05caffef8f;hp=8c54fa7ed1d35a31aa9ca34405fd2a3e64bf7ec7;hpb=3ee551fa4f2a2c3736a06f9f85f29b9f7bd89818;p=lilypond.git diff --git a/lily/line-interface.cc b/lily/line-interface.cc index 8c54fa7ed1..2b4639c5d2 100644 --- a/lily/line-interface.cc +++ b/lily/line-interface.cc @@ -48,7 +48,7 @@ Line_interface::make_trill_line (Grob *me, alist_chain)); Stencil elt = fm->find_by_name ("scripts.trill_element"); - + elt.align_to (Y_AXIS, CENTER); Real elt_len = elt.extent (X_AXIS).length (); if (elt_len <= 0.0) { @@ -65,7 +65,7 @@ Line_interface::make_trill_line (Grob *me, } while (len + elt_len < dz.length ()); - line.rotate (dz.arg (), Offset (0,0)); + line.rotate (dz.arg (), Offset (LEFT, CENTER)); line.translate (from); return line; @@ -127,7 +127,7 @@ Line_interface::make_dashed_line (Real thick, Offset from, Offset to, { dash_fraction = min (max (dash_fraction, 0.0), 1.0); Real on = dash_fraction * dash_period + thick; - Real off = dash_period - on; + Real off = max (0.0, dash_period - on); SCM at = scm_list_n (ly_symbol2scm ("dashed-line"), scm_from_double (thick), @@ -212,22 +212,33 @@ Line_interface::line (Grob *me, Offset from, Offset to) Stencil stil; - SCM dash_fraction = me->get_property ("dash-fraction"); - if (scm_is_number (dash_fraction) || type == ly_symbol2scm ("dotted-line")) + if (type == ly_symbol2scm ("dashed-line") || type == ly_symbol2scm ("dotted-line")) { Real fraction = type == ly_symbol2scm ("dotted-line") ? 0.0 - : robust_scm2double (dash_fraction, 0.4); + : robust_scm2double (me->get_property ("dash-fraction"), 0.4); fraction = min (max (fraction, 0.0), 1.0); Real period = Staff_symbol_referencer::staff_space (me) * robust_scm2double (me->get_property ("dash-period"), 1.0); - if (period < 0) + if (period <= 0) return Stencil (); + Real len = (to-from).length (); + + int n = (int) rint ((len - period * fraction) / period); + n = max (0, n); + if (n > 0) + { + /* + TODO: figure out something intelligent for really short + sections. + */ + period = ((to-from).length () - period * fraction) / n; + } stil = make_dashed_line (thick, from, to, period, fraction); } else @@ -237,11 +248,14 @@ Line_interface::line (Grob *me, Offset from, Offset to) } ADD_INTERFACE (Line_interface, - "Generic line objects. Any object using lines supports this. Normally, " - "you get a straight line. If @code{dash-period} is defined, a dashed line is " - "produced; the length of the dashes is tuned with " + "Generic line objects. Any object using lines supports this. " + "The property @code{style} can be @code{line}, " + "@code{dashed-line}, @code{trill}, \n" + "@code{dotted-line} or @code{zigzag}.\n" + "\n" + "For dashed-line, the length of the dashes is tuned with " "@code{dash-fraction}. If the latter is set to 0, a dotted line is " - "produced. If @code{dash-fraction} is negative, the line is made " + "produced. If @code{dash-period} is negative, the line is made " "transparent.", /* properties */