]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/spring.cc
fet fixen
[lilypond.git] / lily / spring.cc
index 93ef33f59ef0327cfe0a2e687d80b6bd12c6b992..8b137891791fe96927ad78e64b0aad7bded08bdc 100644 (file)
@@ -1,40 +1 @@
-/*   
-  spring.cc --  implement Spring
-  
-  source file of the GNU LilyPond music typesetter
-  
-  (c) 1999--2001 Han-Wen Nienhuys <hanwen@cs.uu.nl>
-  
- */
-
-#include "spring.hh"
-#include "debug.hh"
-#include "item.hh"
-#include "spaceable-grob.hh"
-#include "paper-column.hh"
-
-Spring::Spring ()
-{
-  item_l_drul_[LEFT]  =item_l_drul_[RIGHT] =0;
-  distance_f_ =0.;
-  strength_f_ =1.0;
-}
-
-void
-Spring::add_to_cols ()
-{
-  Spaceable_grob::add_spring (item_l_drul_[LEFT]->column_l (),
-                                item_l_drul_[RIGHT]->column_l (),
-                                distance_f_, strength_f_);
-}
-
-
-Column_spring::Column_spring ()
-{
-  other_l_ = 0;
-  distance_f_ =0;
-  strength_f_ =1.0;
-}
-
-