]> git.donarmstrong.com Git - lilypond.git/blobdiff - flower/offset.cc
Run grand-replace (issue 3765)
[lilypond.git] / flower / offset.cc
index 41b42d8b9715dfe24697794fe23d8d1683b0d6a0..78c3eeffc3aef9c479cbf13a51dcf7148c557ba1 100644 (file)
@@ -1,7 +1,7 @@
 /*
   This file is part of LilyPond, the GNU music typesetter.
 
-  Copyright (C) 1997--2011 Han-Wen Nienhuys <hanwen@xs4all.nl>
+  Copyright (C) 1997--2014 Han-Wen Nienhuys <hanwen@xs4all.nl>
 
   LilyPond is free software: you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
@@ -25,7 +25,7 @@ Offset::to_string () const
 {
   string s;
   s = string (" (") + ::to_string (coordinate_a_[X_AXIS]) + ", "
-    + ::to_string (coordinate_a_[Y_AXIS]) + ")";
+      + ::to_string (coordinate_a_[Y_AXIS]) + ")";
   return s;
 }
 #endif
@@ -91,23 +91,23 @@ Real
 Offset::length () const
 {
   return sqrt (sqr (coordinate_a_[X_AXIS])
-                   + sqr (coordinate_a_[Y_AXIS]));
+               + sqr (coordinate_a_[Y_AXIS]));
 }
 
 bool
 Offset::is_sane () const
 {
   return !isnan (coordinate_a_[X_AXIS])
-    && !isnan (coordinate_a_ [Y_AXIS])
-    && !isinf (coordinate_a_[X_AXIS]) 
-    && !isinf (coordinate_a_[Y_AXIS]);
+         && !isnan (coordinate_a_ [Y_AXIS])
+         && !isinf (coordinate_a_[X_AXIS])
+         && !isinf (coordinate_a_[Y_AXIS]);
 }
 
 Offset
 Offset::direction () const
 {
   Offset d = *this;
-  d /= length (); 
+  d /= length ();
   return d;
 }