lilypond-1.3.65
[lilypond.git] / lily / beam.cc
blob322655fe7417e077554200041baf7808fa436d27
1 /*
2 beam.cc -- implement Beam
4 source file of the GNU LilyPond music typesetter
6 (c) 1997--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 Jan Nieuwenhuizen <janneke@gnu.org>
9 */
12 [TODO]
13 * less hairy code
14 * move paper vars to scm
16 remove *-hs variables.
20 #include <math.h> // tanh.
21 #include "directional-element-interface.hh"
22 #include "beaming.hh"
23 #include "dimensions.hh"
24 #include "beam.hh"
25 #include "misc.hh"
26 #include "debug.hh"
27 #include "least-squares.hh"
28 #include "stem.hh"
29 #include "paper-def.hh"
30 #include "lookup.hh"
31 #include "group-interface.hh"
32 #include "staff-symbol-referencer.hh"
33 #include "cross-staff.hh"
35 Beam::Beam (SCM s)
36 : Spanner (s)
38 Pointer_group_interface g (this, "stems");
39 g.set_interface ();
41 set_elt_property ("height", gh_int2scm (0)); // ugh.
42 set_elt_property ("y-position" ,gh_int2scm (0));
45 void
46 Beam::add_stem (Stem*s)
48 Pointer_group_interface gi (this, "stems");
49 gi.add_element (s);
51 s->add_dependency (this);
53 assert (!s->beam_l ());
54 s->set_elt_pointer ("beam", self_scm_);
56 add_bound_item (this, s);
59 int
60 Beam::get_multiplicity () const
62 int m = 0;
63 for (SCM s = get_elt_pointer ("stems"); gh_pair_p (s); s = gh_cdr (s))
65 Score_element * sc = unsmob_element (gh_car (s));
67 if (Stem * st = dynamic_cast<Stem*> (sc))
68 m = m >? st->beam_count (LEFT) >? st->beam_count (RIGHT);
70 return m;
74 After pre-processing all directions should be set.
75 Several post-processing routines (stem, slur, script) need stem/beam
76 direction.
77 Currenly, this means that beam has set all stem's directions.
78 [Alternatively, stems could set its own directions, according to
79 their beam, during 'final-pre-processing'.]
81 GLUE_SCORE_ELEMENT(Beam,before_line_breaking);
82 SCM
83 Beam::member_before_line_breaking ()
85 // Why?
86 if (visible_stem_count () < 2)
88 warning (_ ("beam has less than two stems"));
92 if (!Directional_element_interface (this).get ())
93 Directional_element_interface (this).set (get_default_dir ());
95 auto_knees ();
96 set_stem_directions ();
97 set_stem_shorten ();
99 return SCM_EOL;
103 FIXME
105 Direction
106 Beam::get_default_dir () const
108 Drul_array<int> total;
109 total[UP] = total[DOWN] = 0;
110 Drul_array<int> count;
111 count[UP] = count[DOWN] = 0;
112 Direction d = DOWN;
114 for (int i=0; i <stem_count (); i++)
115 do { // HUH -- waar slaat dit op?
116 Stem *s = stem (i);
117 Direction sd = Directional_element_interface (s).get ();
118 int current = sd ? (1 + d * sd)/2
119 : s->get_center_distance ((Direction)-d);
121 if (current)
123 total[d] += current;
124 count[d] ++;
127 } while (flip(&d) != DOWN);
130 SCM s = scm_eval (gh_list (ly_symbol2scm ("beam-dir-algorithm"),
131 ly_quote_scm (gh_cons (gh_int2scm (count[UP]),
132 gh_int2scm (count[DOWN]))),
133 ly_quote_scm (gh_cons (gh_int2scm (total[UP]),
134 gh_int2scm (total[DOWN]))),
135 SCM_UNDEFINED));
136 if (gh_number_p (s) && gh_scm2int (s))
137 return to_dir (s);
140 If dir is not determined: get from paper
142 return (Direction)(int)
143 paper_l ()->get_var ("stem_default_neutral_direction");
148 Set all stems with non-forced direction to beam direction.
149 Urg: non-forced should become `without/with unforced' direction,
150 once stem gets cleaned-up.
152 void
153 Beam::set_stem_directions ()
155 Direction d = Directional_element_interface (this).get ();
156 for (int i=0; i <stem_count (); i++)
158 Stem *s = stem (i);
159 SCM force = s->remove_elt_property ("dir-forced");
160 if (!gh_boolean_p (force) || !gh_scm2bool (force))
161 Directional_element_interface (s).set (d);
165 void
166 Beam::auto_knees ()
168 if (!auto_knee ("auto-interstaff-knee-gap", true))
169 auto_knee ("auto-knee-gap", false);
173 Simplistic auto-knees; only consider vertical gap between two
174 adjacent chords.
176 `Forced' stem directions are ignored. If you don't want auto-knees,
177 don't set, or unset autoKneeGap/autoInterstaffKneeGap.
179 bool
180 Beam::auto_knee (String gap_str, bool interstaff_b)
182 bool knee_b = false;
183 int knee_y = 0;
184 SCM gap = get_elt_property (gap_str);
185 Direction d = Directional_element_interface (this).get ();
187 if (gh_number_p (gap))
189 int auto_gap_i = gh_scm2int (gap);
190 for (int i=1; i < stem_count (); i++)
192 bool is_b = (bool)(calc_interstaff_dist (stem (i), this)
193 - calc_interstaff_dist (stem (i-1), this));
194 int l_y = (int)(stem (i-1)->head_positions()[d])
195 + (int)calc_interstaff_dist (stem (i-1), this);
196 int r_y = (int)(stem (i)->head_positions()[d])
197 + (int)calc_interstaff_dist (stem (i), this);
198 int gap_i = r_y - l_y;
200 if ((abs (gap_i) >= auto_gap_i) && (!interstaff_b || is_b))
202 knee_y = (r_y + l_y) / 2;
203 knee_b = true;
204 break;
208 if (knee_b)
210 for (int i=0; i < stem_count (); i++)
212 Item *s = stem(i);
213 int y = (int)(stem (i)->head_positions()[d])
214 + (int)calc_interstaff_dist (s, this);
217 Directional_element_interface (s).set (y < knee_y ? UP : DOWN);
218 s->set_elt_property ("dir-forced", SCM_BOOL_T);
221 return knee_b;
225 Set stem's shorten property if unset.
226 TODO:
227 take some y-position (chord/beam/nearest?) into account
228 scmify forced-fraction
230 void
231 Beam::set_stem_shorten ()
233 if (!visible_stem_count ())
234 return;
236 Real forced_fraction = forced_stem_count () / visible_stem_count ();
237 if (forced_fraction < 0.5)
238 return;
240 int multiplicity = get_multiplicity ();
242 // grace stems?
243 SCM shorten = scm_eval (ly_symbol2scm ("beamed-stem-shorten"));
245 if (shorten == SCM_EOL)
246 return;
248 int sz = scm_ilength (shorten);
250 Staff_symbol_referencer_interface st (this);
251 Real staff_space = st.staff_space ();
252 SCM shorten_elt = scm_list_ref (shorten, gh_int2scm (multiplicity <? (sz - 1)));
253 Real shorten_f = gh_scm2double (shorten_elt) * staff_space;
255 /* cute, but who invented this -- how to customise ? */
256 if (forced_fraction < 1)
257 shorten_f /= 2;
259 for (int i=0; i < stem_count (); i++)
261 Stem* s = stem (i);
262 if (s->invisible_b ())
263 continue;
264 if (gh_number_p (s->get_elt_property ("shorten")))
265 s->set_elt_property ("shorten", gh_double2scm (shorten_f));
270 Set elt properties height and y-position if not set.
271 Adjust stem lengths to reach beam.
273 GLUE_SCORE_ELEMENT(Beam,after_line_breaking);
275 Beam::member_after_line_breaking ()
277 /* first, calculate y, dy */
278 Real y, dy;
279 calc_default_position_and_height (&y, &dy);
280 if (visible_stem_count ())
282 if (suspect_slope_b (y, dy))
283 dy = 0;
285 Real damped_dy = calc_slope_damping_f (dy);
286 Real quantised_dy = quantise_dy_f (damped_dy);
288 y += (dy - quantised_dy) / 2;
289 dy = quantised_dy;
292 until here, we used only stem_info, which acts as if dir=up
294 y *= Directional_element_interface (this).get ();
295 dy *= Directional_element_interface (this).get ();
297 Staff_symbol_referencer_interface st (this);
298 Real half_space = st.staff_space () / 2;
300 /* check for user-override of dy */
301 SCM s = remove_elt_property ("height-hs");
302 if (gh_number_p (s))
304 dy = gh_scm2double (s) * half_space;
306 set_elt_property ("height", gh_double2scm (dy));
308 /* check for user-override of y */
309 s = remove_elt_property ("y-position-hs");
310 if (gh_number_p (s))
312 y = gh_scm2double (s) * half_space;
314 else
316 /* we can modify y, so we should quantise y */
317 Real y_shift = check_stem_length_f (y, dy);
318 y += y_shift;
319 y = quantise_y_f (y, dy, 0);
320 set_stem_length (y, dy);
321 y_shift = check_stem_length_f (y, dy);
323 if (y_shift > half_space / 4)
325 y += y_shift;
328 for significantly lengthened or shortened stems,
329 request quanting the other way.
331 int quant_dir = 0;
332 if (abs (y_shift) > half_space / 2)
333 quant_dir = sign (y_shift) * Directional_element_interface (this).get ();
334 y = quantise_y_f (y, dy, quant_dir);
337 // UGH. Y is not in staff position unit?
338 // Ik dacht datwe daar juist van weg wilden?
339 set_stem_length (y, dy);
340 set_elt_property ("y-position", gh_double2scm (y));
343 return SCM_UNDEFINED;
347 See Documentation/tex/fonts.doc
349 void
350 Beam::calc_default_position_and_height (Real* y, Real* dy) const
352 *y = 0;
353 *dy = 0;
354 if (visible_stem_count () <= 1)
355 return;
357 Real first_ideal = first_visible_stem ()->calc_stem_info ().idealy_f_;
358 if (first_ideal == last_visible_stem ()->calc_stem_info ().idealy_f_)
360 *dy = 0;
361 *y = first_ideal;
362 return;
365 Array<Offset> ideals;
366 Real x0 = first_visible_stem ()->relative_coordinate (0, X_AXIS);
367 for (int i=0; i < stem_count (); i++)
369 Stem* s = stem (i);
370 if (s->invisible_b ())
371 continue;
372 ideals.push (Offset (s->relative_coordinate (0, X_AXIS) - x0,
373 s->calc_stem_info ().idealy_f_));
375 Real dydx;
376 minimise_least_squares (&dydx, y, ideals); // duh, takes references
378 Real dx = last_visible_stem ()->relative_coordinate (0, X_AXIS) - x0;
379 *dy = dydx * dx;
382 bool
383 Beam::suspect_slope_b (Real y, Real dy) const
385 /* first, calculate y, dy */
387 steep slope running against lengthened stem is suspect
389 Real first_ideal = first_visible_stem ()->calc_stem_info ().idealy_f_;
390 Real last_ideal = last_visible_stem ()->calc_stem_info ().idealy_f_;
391 Real lengthened = paper_l ()->get_var ("beam_lengthened");
392 Real steep = paper_l ()->get_var ("beam_steep_slope");
394 Real dx = last_visible_stem ()->relative_coordinate (0, X_AXIS) - first_visible_stem ()->relative_coordinate (0, X_AXIS);
395 Real dydx = dy && dx ? dy/dx : 0;
397 if (((y - first_ideal > lengthened) && (dydx > steep))
398 || ((y + dy - last_ideal > lengthened) && (dydx < -steep)))
400 return true;
402 return false;
406 This neat trick is by Werner Lemberg,
407 damped = tanh (slope)
408 corresponds with some tables in [Wanske]
410 Real
411 Beam::calc_slope_damping_f (Real dy) const
413 SCM damp = get_elt_property ("damping"); // remove?
414 int damping = 1; // ugh.
415 if (gh_number_p (damp))
416 damping = gh_scm2int (damp);
418 if (damping)
420 Real dx = last_visible_stem ()->relative_coordinate (0, X_AXIS)
421 - first_visible_stem ()->relative_coordinate (0, X_AXIS);
422 Real dydx = dy && dx ? dy/dx : 0;
423 dydx = 0.6 * tanh (dydx) / damping;
424 return dydx * dx;
426 return dy;
429 Real
430 Beam::calc_stem_y_f (Stem* s, Real y, Real dy) const
432 Real thick = gh_scm2double (get_elt_property ("beam-thickness"));
433 thick *= paper_l ()->get_var ("staffspace");
435 int beam_multiplicity = get_multiplicity ();
436 int stem_multiplicity = (s->flag_i () - 2) >? 0;
438 Real interbeam_f = paper_l ()->interbeam_f (beam_multiplicity);
439 Real x0 = first_visible_stem ()->relative_coordinate (0, X_AXIS);
440 Real dx = last_visible_stem ()->relative_coordinate (0, X_AXIS) - x0;
441 Real stem_y = (dy && dx ? (s->relative_coordinate (0, X_AXIS) - x0) / dx * dy : 0) + y;
443 /* knee */
444 Direction dir = Directional_element_interface(this).get ();
445 Direction sdir = Directional_element_interface (s).get ();
447 /* knee */
448 if (dir!= sdir)
450 stem_y -= dir
451 * (thick / 2 + (beam_multiplicity - 1) * interbeam_f);
453 Staff_symbol_referencer_interface me (s);
454 Staff_symbol_referencer_interface last (last_visible_stem ());
456 // huh, why not for first visible?
457 if (//(s != first_visible_stem ()) &&
458 me.staff_symbol_l () != last.staff_symbol_l ())
459 stem_y += Directional_element_interface (this).get ()
460 * (beam_multiplicity - stem_multiplicity) * interbeam_f;
462 return stem_y;
465 Real
466 Beam::check_stem_length_f (Real y, Real dy) const
468 Real shorten = 0;
469 Real lengthen = 0;
470 Direction dir = Directional_element_interface (this).get ();
472 for (int i=0; i < stem_count (); i++)
474 Stem* s = stem (i);
475 if (s->invisible_b ())
476 continue;
478 Real stem_y = calc_stem_y_f (s, y, dy);
480 stem_y *= dir;
481 Stem_info info = s->calc_stem_info ();
483 // if (0 > info.maxy_f_ - stem_y)
484 shorten = shorten <? info.maxy_f_ - stem_y;
485 // if (0 < info.miny_f_ - stem_y)
486 lengthen = lengthen >? info.miny_f_ - stem_y;
489 if (lengthen && shorten)
490 warning (_ ("weird beam vertical offset"));
492 /* when all stems are too short, normal stems win */
493 return dir * ((shorten) ? shorten : lengthen);
497 Hmm. At this time, beam position and slope are determined. Maybe,
498 stem directions and length should set to relative to the chord's
499 position of the beam. */
500 void
501 Beam::set_stem_length (Real y, Real dy)
503 Staff_symbol_referencer_interface st (this);
504 Real half_space = st.staff_space ()/2;
505 for (int i=0; i < stem_count (); i++)
507 Stem* s = stem (i);
508 if (s->invisible_b ())
509 continue;
511 Real stem_y = calc_stem_y_f (s, y, dy);
513 /* caution: stem measures in staff-positions */
514 s->set_stemend ((stem_y + calc_interstaff_dist (s, this)) / half_space);
519 [Ross] (simplification of)
520 Set dy complying with:
521 - zero
522 - thick / 2 + staffline_f / 2
523 - thick + staffline_f
524 + n * staff_space
526 Real
527 Beam::quantise_dy_f (Real dy) const
529 Array<Real> a;
530 for (SCM s = scm_eval (ly_symbol2scm ("beam-height-quants")); s !=SCM_EOL; s = gh_cdr (s))
531 a.push (gh_scm2double (gh_car (s)));
533 if (a.size () <= 1)
534 return dy;
536 Staff_symbol_referencer_interface st (this);
537 Real staff_space = st.staff_space ();
539 Interval iv = quantise_iv (a, abs (dy)/staff_space) * staff_space;
540 Real q = (abs (dy) - iv[SMALLER] <= iv[BIGGER] - abs (dy))
541 ? iv[SMALLER]
542 : iv[BIGGER];
544 return q * sign (dy);
548 Prevent interference from stafflines and beams.
549 See Documentation/tex/fonts.doc
551 We only need to quantise the (left) y-position of the beam,
552 since dy is quantised too.
553 if extend_b then stems must *not* get shorter
555 Real
556 Beam::quantise_y_f (Real y, Real dy, int quant_dir)
558 int multiplicity = get_multiplicity ();
559 Staff_symbol_referencer_interface st (this);
560 Real staff_space = st.staff_space ();
561 SCM quants = scm_eval (gh_list (ly_symbol2scm ("beam-vertical-position-quants"),
562 gh_int2scm (multiplicity),
563 gh_double2scm (dy/staff_space),
564 SCM_UNDEFINED));
566 Array<Real> a;
568 for (; quants != SCM_EOL; quants = gh_cdr (quants))
569 a.push (gh_scm2double (gh_car (quants)));
571 if (a.size () <= 1)
572 return y;
574 Real up_y = Directional_element_interface (this).get () * y;
575 Interval iv = quantise_iv (a, up_y/staff_space) * staff_space;
577 Real q = up_y - iv[SMALLER] <= iv[BIGGER] - up_y
578 ? iv[SMALLER] : iv[BIGGER];
579 if (quant_dir)
580 q = iv[(Direction)quant_dir];
582 return q * Directional_element_interface (this).get ();
585 void
586 Beam::set_beaming (Beaming_info_list *beaming)
588 Direction d = LEFT;
589 for (int i=0; i < stem_count (); i++)
593 if (stem (i)->beam_count (d) == 0)
594 stem (i)->set_beaming ( beaming->infos_.elem (i).beams_i_drul_[d],d);
596 while (flip (&d) != LEFT);
603 beams to go with one stem.
605 BURP
606 clean me up.
608 Molecule
609 Beam::stem_beams (Stem *here, Stem *next, Stem *prev) const
611 if ((next && !(next->relative_coordinate (0, X_AXIS) > here->relative_coordinate (0, X_AXIS))) ||
612 (prev && !(prev->relative_coordinate (0, X_AXIS) < here->relative_coordinate (0, X_AXIS))))
613 programming_error ("Beams are not left-to-right");
615 Real staffline_f = paper_l ()->get_var ("stafflinethickness");
616 int multiplicity = get_multiplicity ();
619 Real interbeam_f = paper_l ()->interbeam_f (multiplicity);
620 Real thick = gh_scm2double (get_elt_property ("beam-thickness"));
621 thick *= paper_l ()->get_var ("staffspace");
623 Real bdy = interbeam_f;
624 Real stemdx = staffline_f;
626 Real dx = visible_stem_count () ?
627 last_visible_stem ()->relative_coordinate (0, X_AXIS) - first_visible_stem ()->relative_coordinate (0, X_AXIS)
628 : 0.0;
629 Real dy = gh_scm2double (get_elt_property ("height"));
630 Real dydx = dy && dx ? dy/dx : 0;
632 Molecule leftbeams;
633 Molecule rightbeams;
635 // UGH
636 Real nw_f;
637 if (!here->first_head ())
638 nw_f = 0;
639 else if (here->type_i ()== 1)
640 nw_f = paper_l ()->get_var ("wholewidth");
641 else if (here->type_i () == 2)
642 nw_f = paper_l ()->get_var ("notewidth") * 0.8;
643 else
644 nw_f = paper_l ()->get_var ("quartwidth");
647 Direction dir = Directional_element_interface (this).get ();
649 /* half beams extending to the left. */
650 if (prev)
652 int lhalfs= lhalfs = here->beam_count (LEFT) - prev->beam_count (RIGHT);
653 int lwholebeams= here->beam_count (LEFT) <? prev->beam_count (RIGHT) ;
655 Half beam should be one note-width,
656 but let's make sure two half-beams never touch
658 Real w = here->relative_coordinate (0, X_AXIS) - prev->relative_coordinate (0, X_AXIS);
659 w = w/2 <? nw_f;
660 Molecule a;
661 if (lhalfs) // generates warnings if not
662 a = lookup_l ()->beam (dydx, w, thick);
663 a.translate (Offset (-w, -w * dydx));
664 for (int j = 0; j < lhalfs; j++)
666 Molecule b (a);
667 b.translate_axis (-dir * bdy * (lwholebeams+j), Y_AXIS);
668 leftbeams.add_molecule (b);
672 if (next)
674 int rhalfs = here->beam_count (RIGHT) - next->beam_count (LEFT);
675 int rwholebeams= here->beam_count (RIGHT) <? next->beam_count (LEFT) ;
677 Real w = next->relative_coordinate (0, X_AXIS) - here->relative_coordinate (0, X_AXIS);
678 Molecule a = lookup_l ()->beam (dydx, w + stemdx, thick);
679 a.translate_axis( - stemdx/2, X_AXIS);
680 int j = 0;
681 Real gap_f = 0;
683 SCM gap = get_elt_property ("beam-gap");
684 if (gh_number_p (gap))
686 int gap_i = gh_scm2int ( (gap));
687 int nogap = rwholebeams - gap_i;
689 for (; j < nogap; j++)
691 Molecule b (a);
692 b.translate_axis (-dir * bdy * j, Y_AXIS);
693 rightbeams.add_molecule (b);
695 // TODO: notehead widths differ for different types
696 gap_f = nw_f / 2;
697 w -= 2 * gap_f;
698 a = lookup_l ()->beam (dydx, w + stemdx, thick);
701 for (; j < rwholebeams; j++)
703 Molecule b (a);
704 b.translate (Offset (here->invisible_b () ? 0 : gap_f, -dir * bdy * j));
705 rightbeams.add_molecule (b);
708 w = w/2 <? nw_f;
709 if (rhalfs)
710 a = lookup_l ()->beam (dydx, w, thick);
712 for (; j < rwholebeams + rhalfs; j++)
714 Molecule b (a);
715 b.translate_axis (- dir * bdy * j, Y_AXIS);
716 rightbeams.add_molecule (b);
720 leftbeams.add_molecule (rightbeams);
723 Does beam quanting think of the asymetry of beams?
724 Refpoint is on bottom of symbol. (FIXTHAT) --hwn.
726 return leftbeams;
729 GLUE_SCORE_ELEMENT(Beam,brew_molecule);
731 Beam::member_brew_molecule () const
733 Molecule mol;
734 if (!stem_count ())
735 return SCM_EOL;
736 Real x0,dx;
737 if (visible_stem_count ())
739 x0 = first_visible_stem ()->relative_coordinate (0, X_AXIS);
740 dx = last_visible_stem ()->relative_coordinate (0, X_AXIS) - x0;
742 else
744 x0 = stem (0)->relative_coordinate (0, X_AXIS);
745 dx = stem_top ()->relative_coordinate (0, X_AXIS) - x0;
749 Real dy = gh_scm2double (get_elt_property ("height"));
750 Real dydx = dy && dx ? dy/dx : 0;
751 Real y = gh_scm2double (get_elt_property ("y-position"));
752 for (int j=0; j <stem_count (); j++)
754 Stem *i = stem (j);
755 Stem * prev = (j > 0)? stem (j-1) : 0;
756 Stem * next = (j < stem_count ()-1) ? stem (j+1) :0;
758 Molecule sb = stem_beams (i, next, prev);
759 Real x = i->relative_coordinate (0, X_AXIS)-x0;
760 sb.translate (Offset (x, x * dydx + y));
761 mol.add_molecule (sb);
763 mol.translate_axis (x0
764 - get_bound (LEFT)->relative_coordinate (0, X_AXIS), X_AXIS);
766 return mol.create_scheme ();
770 Beam::forced_stem_count () const
772 int f = 0;
773 for (int i=0; i < stem_count (); i++)
775 Stem *s = stem (i);
777 if (s->invisible_b ())
778 continue;
780 if (((int)s->chord_start_f ())
781 && (s->get_direction () != s->get_default_dir ()))
782 f++;
784 return f;
788 TODO: Fix this class. This is wildly inefficient.
789 And it sux. Yet another array/list 'interface'.
791 Stem *
792 Beam::stem (int i) const
794 return Pointer_group_interface__extract_elements ((Beam*) this, (Stem*) 0, "stems")[i];
798 Beam::stem_count () const
800 Pointer_group_interface gi (this, "stems");
801 return gi.count ();
804 Stem*
805 Beam::stem_top () const
807 SCM s = get_elt_pointer ("stems");
809 return gh_pair_p (s) ? dynamic_cast<Stem*> (unsmob_element (gh_car (s))) : 0;
812 /* burp */
814 Beam::visible_stem_count () const
816 int c = 0;
817 for (int i = 0; i < stem_count (); i++)
819 if (!stem (i)->invisible_b ())
820 c++;
822 return c;
825 Stem*
826 Beam::first_visible_stem () const
828 for (int i = 0; i < stem_count (); i++)
830 Stem* s = stem (i);
831 if (!s->invisible_b ())
832 return s;
834 return 0;
837 Stem*
838 Beam::last_visible_stem () const
840 for (int i = stem_count (); i > 0; i--)
842 Stem* s = stem (i - 1);
843 if (!s->invisible_b ())
844 return s;
846 return 0;