summaryrefslogtreecommitdiff
path: root/lily/include/rod.hh
diff options
context:
space:
mode:
authorHan-Wen Nienhuys <hanwen@xs4all.nl>2000-05-22 13:12:04 +0200
committerHan-Wen Nienhuys <hanwen@xs4all.nl>2000-05-22 13:12:04 +0200
commitd7416352b825c3e9b4858e1ddcf14f0c00e26d89 (patch)
tree3db061adae3fcdc2ab5f2f0646dd9f07d68190a4 /lily/include/rod.hh
parent0d73d1699ab89227662d21c792354bf338c230f1 (diff)
release: 1.3.53
====== * Small cleanups in Molecule interface * Spacing related elements perform suicide after calculating distances. This saves a some memory, approximately 2 to 5 % ? * Small cleanups in line breaking: Paper_column stores springs and rods in only one place now. All fields relating to energy have been removed * Don't generate all output Scheme in memory, but evaluate to output file immediately. This will reduce memory usage a little. * Use STL's map for Dictionary template * Substitute pointers on element properties of the root Line_of_score as well. * Added toplevel doc target, to support building doc with --srcdir * Removed cygwin build stuff; updated versions at: http://appel.dyndns.org/lilypond/gnu-windows/cross * Fixed lily.scm to handle incipits (thanks, Mats) 1.3
Diffstat (limited to 'lily/include/rod.hh')
-rw-r--r--lily/include/rod.hh7
1 files changed, 6 insertions, 1 deletions
diff --git a/lily/include/rod.hh b/lily/include/rod.hh
index 4374f3c4ef..4edf21b1cd 100644
--- a/lily/include/rod.hh
+++ b/lily/include/rod.hh
@@ -20,7 +20,6 @@ struct Column_rod
Column_rod ();
static int compare (const Column_rod &r1, const Column_rod &r2);
- void print () const;
};
@@ -28,6 +27,12 @@ struct Rod
{
Drul_array <Item*> item_l_drul_;
Real distance_f_;
+
+ /**
+ translate the rod so as to refer to Paper_columns
+ */
+ void columnize ();
+
void add_to_cols ();
Rod ();