]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/dimension-cache.cc
* lily/paper-system.cc (read_left_bound): new function. Read
[lilypond.git] / lily / dimension-cache.cc
index b2d6330864af384a708a5308773d738fa2cd46b2..ff47aab7e8494b155bd1647fb18ddba1c0f02804 100644 (file)
@@ -1,13 +1,11 @@
-/*   
-  dimension-cache.cc --  implement Dimension_cache
-  
+/*
+  dimension-cache.cc -- implement Dimension_cache
+
   source file of the GNU LilyPond music typesetter
-  
-  (c) 1998--2005 Han-Wen Nienhuys <hanwen@cs.uu.nl>
- */
 
+  (c) 1998--2005 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+*/
 
-#include <math.h>
 
 #include "dimension-cache.hh"
 #include "warn.hh"
@@ -21,7 +19,7 @@ Dimension_cache::Dimension_cache (Dimension_cache const &d)
   offset_ = d.offset_;
   offset_callbacks_ = d.offset_callbacks_;
   offsets_left_ = d.offsets_left_;
-  parent_ = d.parent_;  
+  parent_ = d.parent_;
 }
 
 Dimension_cache::Dimension_cache ()
@@ -33,18 +31,12 @@ void
 Dimension_cache::init ()
 {
   dimension_ = SCM_EOL;
-  dimension_callback_ = SCM_EOL; 
+  dimension_callback_ = SCM_EOL;
 
   offsets_left_ = 0;
   offset_callbacks_ = SCM_EOL;
   offset_ = 0.0;
-  
+
   parent_ = 0;
 }
 
-
-
-
-
-
-