]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/spring.cc
(score_stem_lengths): Revert oops.
[lilypond.git] / lily / spring.cc
index e63fee0891b0d1fab26bc63031b9015dd89b1721..8b137891791fe96927ad78e64b0aad7bded08bdc 100644 (file)
@@ -1,56 +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;
-}
-
-/*
-
- ugh : if we go from items to cols, we should adjust distance and strength.
- */
-
-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_);
-}
-
-void
-Spring::set_to_cols( )
-{
-  Direction d = LEFT;
-  do
-    {
-      item_l_drul_[d] = item_l_drul_[d]->column_l ();
-    }
-  while (flip (&d) != LEFT);
-
-}
-
-Column_spring::Column_spring ()
-{
-  other_l_ = 0;
-  distance_f_ =0;
-  strength_f_ =1.0;
-}
-
-