2 This file is part of LilyPond, the GNU music typesetter.
4 Copyright (C) 1997--2012 Han-Wen Nienhuys <hanwen@xs4all.nl>
6 LilyPond is free software: you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation, either version 3 of the License, or
9 (at your option) any later version.
11 LilyPond is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with LilyPond. If not, see <http://www.gnu.org/licenses/>.
24 Offset::to_string () const
27 s = string (" (") + ::to_string (coordinate_a_[X_AXIS]) + ", "
28 + ::to_string (coordinate_a_[Y_AXIS]) + ")";
34 free bsd fix by John Galbraith
38 complex_multiply (Offset z1, Offset z2)
41 if (!isinf (z2[Y_AXIS]))
43 z[X_AXIS] = z1[X_AXIS] * z2[X_AXIS] - z1[Y_AXIS] * z2[Y_AXIS];
44 z[Y_AXIS] = z1[X_AXIS] * z2[Y_AXIS] + z1[Y_AXIS] * z2[X_AXIS];
50 complex_conjugate (Offset o)
52 o[Y_AXIS] = -o[Y_AXIS];
57 complex_divide (Offset z1, Offset z2)
59 z2 = complex_conjugate (z2);
60 Offset z = complex_multiply (z1, z2);
61 z *= 1 / z2.length ();
66 complex_exp (Offset o)
68 Real s = sin (o[Y_AXIS]);
69 Real c = cos (o[Y_AXIS]);
71 Real r = exp (o[X_AXIS]);
73 return Offset (r * c, r * s);
79 return atan2 (coordinate_a_[Y_AXIS], coordinate_a_[X_AXIS]);
83 Offset::angle_degrees () const
85 return arg () * 180 / M_PI;
88 euclidian vector length / complex modulus
91 Offset::length () const
93 return sqrt (sqr (coordinate_a_[X_AXIS])
94 + sqr (coordinate_a_[Y_AXIS]));
98 Offset::is_sane () const
100 return !isnan (coordinate_a_[X_AXIS])
101 && !isnan (coordinate_a_ [Y_AXIS])
102 && !isinf (coordinate_a_[X_AXIS])
103 && !isinf (coordinate_a_[Y_AXIS]);
107 Offset::direction () const
115 Offset::swapped () const
117 return Offset (coordinate_a_[Y_AXIS], coordinate_a_[X_AXIS]);