]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.1.22
authorfred <fred>
Sun, 24 Mar 2002 19:59:08 +0000 (19:59 +0000)
committerfred <fred>
Sun, 24 Mar 2002 19:59:08 +0000 (19:59 +0000)
lily/atom.cc

index 423181603dc1c5141de2c1473581019a5d25c082..870c6bece91c6b8fdc9da8884c84366b7dc40083 100644 (file)
@@ -18,6 +18,12 @@ Atom::print() const
 {
 #ifndef NPRINT
   DOUT << "texstring: " <<tex_<<"\n";    
+  
+  DOUT << "dim:";
+    for (Axis i=X_AXIS; i < NO_AXES; incr(i))
+      DOUT << axis_name_str(i) << " = " << dim_[i].str();
+
+  DOUT << "\noffset: " << off_.str ();
 #endif
 }
 
@@ -77,7 +83,7 @@ Atom::TeX_string() const
 }
 
 void
-Atom::translate (Real r, Axis a)
+Atom::translate_axis (Real r, Axis a)
 {
   off_[a] += r; 
 }