]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/spring.hh
2003 -> 2004
[lilypond.git] / lily / include / spring.hh
index 94db15a7a0c8afed86edec4a69eae4f9006acfc3..951f61f29d653274eb921e024780ba8cf76d93fe 100644 (file)
@@ -3,7 +3,7 @@
   
   source file of the GNU LilyPond music typesetter
   
-  (c) 1999--2002 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c) 1999--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
   
  */
 
@@ -17,9 +17,9 @@
 struct Spring_smob
 {
   Grob *other_;
-  Real distance_f_;
+  Real distance_;
   bool expand_only_b_;
-  Real strength_f_;
+  Real strength_;
   
   DECLARE_SIMPLE_SMOBS(Spring_smob,dummy);
 public:
@@ -30,13 +30,13 @@ DECLARE_UNSMOB(Spring_smob, spring);
 
 struct Spring{
   Drul_array<Item*> item_l_drul_;
-  Real distance_f_;
+  Real distance_;
   bool expand_only_b_;
 
   /*
     TODO: make 2 strengths: one for stretching, and one for shrinking.
   */
-  Real strength_f_;
+  Real strength_;
   void add_to_cols ();
   void set_to_cols ();
   Spring ();