]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/atom.cc
release: 0.1.22
[lilypond.git] / 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; 
 }