repo.or.cz
/
lilypond.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
*** empty log message ***
[lilypond.git]
/
lily
/
include
/
stem-info.hh
blob
3f58534457b427f52728d9d730890b5ffa241389
1
/*
2
stem-info.hh -- declare Stem_info
3
4
source file of the GNU LilyPond music typesetter
5
6
(c) 1997--2002 Jan Nieuwenhuizen <janneke@gnu.org>
7
*/
8
9
10
#ifndef STEM_INFO_HH
11
#define STEM_INFO_HH
12
13
#include
"real.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
};
25
26
#endif
// STEM_INFO_HH