]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.0.76
authorfred <fred>
Sun, 24 Mar 2002 19:48:19 +0000 (19:48 +0000)
committerfred <fred>
Sun, 24 Mar 2002 19:48:19 +0000 (19:48 +0000)
lily/include/idealspacing.hh

index 72124521c0588f217dbd887a99f52a9ceece3b19..83fb5ba89dd063a91d52948be7f7a2408af646e8 100644 (file)
 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();
 };