]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/spring.cc
fet fixen
[lilypond.git] / lily / spring.cc
index 41a7e1772ddce17c1612325a003ab6cd5ec42624..8b137891791fe96927ad78e64b0aad7bded08bdc 100644 (file)
@@ -1,37 +1 @@
-/*   
-  spring.cc --  implement Spring
-  
-  source file of the GNU LilyPond music typesetter
-  
-  (c) 1999--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
-  
- */
-
-#include "spring.hh"
-#include "debug.hh"
-#include "item.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 ()
-{
-  item_l_drul_[LEFT]->column_l ()->add_spring (item_l_drul_[RIGHT]->column_l (), distance_f_, strength_f_);
-}
-
-
-Column_spring::Column_spring ()
-{
-  other_l_ = 0;
-  distance_f_ =0;
-  strength_f_ =1.0;
-}
-
-