]> git.donarmstrong.com Git - lilypond.git/blobdiff - flower/axis.cc
* scm/lily.scm (postscript->png): new function
[lilypond.git] / flower / axis.cc
index 61cb194118110efbd8940ba433025d3ca3fc74aa..d28657aabe0175e75649e48d813dbd0b68a4035b 100644 (file)
@@ -3,7 +3,7 @@
 
 
 
-  (c)  1997--2003 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c) 1997--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
 */
 
 #include <assert.h>
@@ -16,30 +16,3 @@ axis_name_string (Axis a)
   return to_string (char (a + 'x'));
 }
 
-
-Axis
-other_axis (Axis a)
-{
-  return a ==  Y_AXIS ? X_AXIS : Y_AXIS;
-}
-
-/*
-  TODO inline these.
- */
-Axis
-post_incr (Axis &a)
-{
-  assert (a < NO_AXES);
-  Axis b= a;
-  a = Axis (int (a) + 1);
-  return b;
-}
-
-Axis
-incr (Axis &a)
-{
-  assert (a < NO_AXES);
-  a = Axis (int (a) + 1);
-  return a;
-}
-