]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/stem-info.hh
Merge branch 'jneeman' of git+ssh://jneem@git.sv.gnu.org/srv/git/lilypond into jneeman
[lilypond.git] / lily / include / stem-info.hh
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..2551c1b094ed759af948ab186e47d35ba362e60a 100644 (file)
@@ -0,0 +1,28 @@
+/*
+  stem-info.hh -- declare Stem_info
+
+  source file of the GNU LilyPond music typesetter
+
+  (c) 1997--2006 Jan Nieuwenhuizen <janneke@gnu.org>
+*/
+
+#ifndef STEM_INFO_HH
+#define STEM_INFO_HH
+
+#include "real.hh"
+#include "direction.hh"
+
+/*
+  Parameters for a stem, (multiply with stemdirection, to get real values
+  for a downstem.)
+*/
+struct Stem_info
+{
+  Direction dir_;
+  Real ideal_y_;
+  Real shortest_y_;
+  Stem_info ();
+  void scale (Real);
+};
+
+#endif // STEM_INFO_HH