X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=flower%2Finclude%2Fdrul-array.hh;h=a184a897209ba20e78bae1abd52ec3aecd5b447e;hb=5b4b0d6e9a197e8f9eb085b7c2ad78b8be3e5cfc;hp=34ea3c8bbef769b406c7ec06f4185d10bc5248d6;hpb=75eebcb49e52d296b1da3e1074e0825d2c780db4;p=lilypond.git diff --git a/flower/include/drul-array.hh b/flower/include/drul-array.hh index 34ea3c8bbe..a184a89720 100644 --- a/flower/include/drul-array.hh +++ b/flower/include/drul-array.hh @@ -3,7 +3,7 @@ source file of the GNU LilyPond music typesetter - (c) 1997--2006 Han-Wen Nienhuys + (c) 1997--2008 Han-Wen Nienhuys */ #ifndef DRUL_ARRAY_HH @@ -19,28 +19,32 @@ template struct Drul_array { T array_[2]; - T &elem_ref (Direction d) + T &at (Direction d) { assert (d == 1 || d == -1); return array_[ (d + 1) / 2]; } - T elem (Direction d) const + T const &at (Direction d) const { assert (d == 1 || d == -1); return array_[ (d + 1) / 2]; } T &operator [] (Direction d) { - return elem_ref (d); + return at (d); } - T operator [] (Direction d) const + T const& operator [] (Direction d) const { - return elem (d); + return at (d); } Drul_array () { } - Drul_array (T t1, T t2) + Drul_array (T const &t1, T const &t2) + { + set (t1, t2); + } + void set (T const &t1, T const &t2) { array_[0] = t1; array_[1] = t2; @@ -51,15 +55,15 @@ template void scale_drul (Drul_array *dr, T x) { - dr->elem_ref (LEFT) *= x; - dr->elem_ref (RIGHT) *= x; + dr->at (LEFT) *= x; + dr->at (RIGHT) *= x; } inline Real linear_combination (Drul_array const &d, Real x) { - return ((1.0 - x) * Real (d.elem (LEFT)) - + (x + 1.0) * Real (d.elem (RIGHT))) * 0.5; + return ((1.0 - x) * Real (d.at (LEFT)) + + (x + 1.0) * Real (d.at (RIGHT))) * 0.5; } #endif /* DRUL_ARRAY_HH */