]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/stem-info.hh
* The grand 2005-2006 replace.
[lilypond.git] / lily / include / stem-info.hh
1 /*
2   stem-info.hh -- declare Stem_info
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1997--2006 Jan Nieuwenhuizen <janneke@gnu.org>
7 */
8
9 #ifndef STEM_INFO_HH
10 #define STEM_INFO_HH
11
12 #include "real.hh"
13
14 /*
15   Parameters for a stem, (multiply with stemdirection, to get real values
16   for a downstem.)
17 */
18 struct Stem_info
19 {
20   Direction dir_;
21   Real ideal_y_;
22   Real shortest_y_;
23   Stem_info ();
24   void scale (Real);
25 };
26
27 #endif // STEM_INFO_HH