]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/col-info.cc
release: 0.1.57
[lilypond.git] / lily / col-info.cc
index 9fa43ef8d30f09257fd61f767e3481129299b28f..769bc5ed724849c79452d899e4fbb3ad2786b61a 100644 (file)
@@ -19,6 +19,12 @@ Colinfo::print() const
     DOUT << "fixed at " << fixed_position()<<", ";
   assert (pcol_l_);
   DOUT << width_.str();
+  Direction d = LEFT;
+  do {
+    for (int i=0; i < rods_[d].size (); i++)
+      rods_[d][i].print ();
+  } while (flip (&d) != LEFT);
+  
   DOUT <<"}\n";
 #endif
 }
@@ -58,3 +64,9 @@ Colinfo::rank_i () const
 {
   return pcol_l_->rank_i ();
 }
+
+void
+Spacer_rod::print ()const
+{
+  DOUT << "Other " << other_idx_ << "dist = " << distance_f_ << '\n';
+}