]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/molecule.cc
release: 1.0.1
[lilypond.git] / lily / molecule.cc
index e37f9e7c33d4ab9f34315d1f4d24c03a6880ef4a..032f0742fb037d0e44f2ee94412f602a26c4628f 100644 (file)
@@ -3,31 +3,22 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
+  (c)  1997--1998 Han-Wen Nienhuys <hanwen@cs.uu.nl>
 */
 
 #include "interval.hh"
-#include "dimen.hh"
+#include "dimension.hh"
 #include "string.hh"
 #include "molecule.hh"
-#include "symbol.hh"
+#include "atom.hh"
 #include "debug.hh"
 #include "tex.hh"
 
-String
-Molecule::TeX_string() const
-{
-  String s;
-  for (iter_top (ats,c); c.ok(); c++)
-    s+=c->TeX_string();
-  return s;
-}
-
 Box
 Molecule::extent() const
 {
   Box b;
-  for (iter_top (ats,c); c.ok(); c++)
+  for (iter_top (atoms_,c); c.ok(); c++)
     b.unite (c->extent());
   return b;
 }
@@ -35,23 +26,23 @@ Molecule::extent() const
 void
 Molecule::translate (Offset o)
 {
-  for (iter_top (ats,c); c.ok(); c++)
+  for (iter_top (atoms_,c); c.ok(); c++)
     c->translate (o);
 }
 
 void
-Molecule::translate (Real x,Axis a)
+Molecule::translate_axis (Real x,Axis a)
 {
-  for (iter_top (ats,c); c.ok(); c++)
-    c->translate (x,a);
+  for (iter_top (atoms_,c); c.ok(); c++)
+    c->translate_axis (x,a);
 }
 
 void
-Molecule::add (Molecule const &m)
+Molecule::add_molecule (Molecule const &m)
 {
-  for (iter_top (m.ats,c); c.ok(); c++) 
+  for (iter_top (m.atoms_,c); c.ok(); c++) 
     {
-      add (**c);
+      add_atom (**c);
     }
 }
 
@@ -59,15 +50,15 @@ Molecule::add (Molecule const &m)
 void
 Molecule::add_at_edge (Axis a, Direction d, Molecule const &m)
 {
-  if (!ats.size()) 
+  if (!atoms_.size()) 
     {
-      add (m);
+      add_molecule (m);
       return;
     }
   Real offset = extent ()[a][d] - m.extent ()[a][-d];
   Molecule toadd (m);
-  toadd.translate (offset, a);
-  add (toadd);
+  toadd.translate_axis (offset, a);
+  add_molecule (toadd);
 }
 
   
@@ -80,7 +71,7 @@ Molecule::operator = (Molecule const &)
 
 Molecule::Molecule (Molecule const &s)
 {
-  add (s);
+  add_molecule (s);
 }
 
 void
@@ -89,13 +80,18 @@ Molecule::print() const
 #ifndef NPRINT
   if (! check_debug)
     return;
-  for (iter_top (ats,c); c.ok(); c++)
+  for (iter_top (atoms_,c); c.ok(); c++)
     c->print();
 #endif
 }
 
 void
-Molecule::add (Atom const &a)
+Molecule::add_atom (Atom const &a)
+{
+  atoms_.bottom().add (new Atom (a)); 
+}
+
+Molecule::Molecule (Atom const &a)
 {
-  ats.bottom().add (new Atom (a)); 
+  add_atom (a) ;
 }