X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fspring.cc;h=8b137891791fe96927ad78e64b0aad7bded08bdc;hb=refs%2Ftags%2Frelease%2F1.5.54;hp=8ba0ff79667b3261c665fcdb977ad1f49d408cb8;hpb=4fabc68182cab7149d2a4b52502e180f57199831;p=lilypond.git diff --git a/lily/spring.cc b/lily/spring.cc index 8ba0ff7966..8b13789179 100644 --- a/lily/spring.cc +++ b/lily/spring.cc @@ -1,58 +1 @@ -/* - spring.cc -- implement Spring - - source file of the GNU LilyPond music typesetter - - (c) 1999 Han-Wen Nienhuys - - */ -#include "spring.hh" -#include "debug.hh" -#include "item.hh" -#include "p-col.hh" - -Spring::Spring () -{ - item_l_drul_[LEFT] =item_l_drul_[RIGHT] =0; - distance_f_ =0.; - strength_f_ =1.0; -} - -void -Spring::add_to_cols () -{ - Direction d = LEFT; - do - { - item_l_drul_[-d]->column_l ()->add_spring - (item_l_drul_[d]->column_l (), - distance_f_, strength_f_); - } - while ((flip (&d))!=LEFT); -} - - -Column_spring::Column_spring () -{ - other_l_ = 0; - distance_f_ =0; - strength_f_ =1.0; -} - - -int -Column_spring::compare (Column_spring const & r1, Column_spring const &r2) -{ - return r1.other_l_->rank_i() - r2.other_l_->rank_i(); -} - -void -Column_spring::print () const -{ -#ifndef NPRINT - DOUT << "Column_spring { rank = " - << other_l_->rank_i () << ", dist = " << distance_f_ << "}\n"; - -#endif -}