]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/stem-info.hh
59f80ace9f43a9a95d309cc193d36341b5f228de
[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--2007 Jan Nieuwenhuizen <janneke@gnu.org>
7 */
8
9 #ifndef STEM_INFO_HH
10 #define STEM_INFO_HH
11
12 #include "real.hh"
13 #include "direction.hh"
14
15 /*
16   Parameters for a stem, (multiply with stemdirection, to get real values
17   for a downstem.)
18 */
19 struct Stem_info
20 {
21   Direction dir_;
22   Real ideal_y_;
23   Real shortest_y_;
24   Stem_info ();
25   void scale (Real);
26 };
27
28 #endif // STEM_INFO_HH