From: fred Date: Sun, 24 Mar 2002 19:48:19 +0000 (+0000) Subject: lilypond-0.0.76 X-Git-Tag: release/1.5.59~4441 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=179e2b1229f77bda0d36de5532d3f5930b0856cf;p=lilypond.git lilypond-0.0.76 --- diff --git a/lily/include/idealspacing.hh b/lily/include/idealspacing.hh index 72124521c0..83fb5ba89d 100644 --- a/lily/include/idealspacing.hh +++ b/lily/include/idealspacing.hh @@ -12,17 +12,18 @@ struct Idealspacing { /// the ideal distance - Real space; + Real space_f_; /// Hooke's constant: how strong are the "springs" attached to columns - Real hooke; + Real hooke_f_; /// the two columns - PCol const *left, *right; + int left_i_; + int right_i_; void print()const; void OK() const ; - Idealspacing(PCol const *left,PCol const *right); + Idealspacing(); };