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/>.
40 This is necessary to safely write loops,
45 is otherwise transformed into true unconditionally.
48 DIRECTION_NEG_LIMIT = -2,
52 other_dir (Direction const d)
54 return (Direction) (-d);
58 operator - (Direction const d)
63 // to be deleted soon (after coping with issues 2491 and 2493
67 if (*i == (Direction)1)
69 else if (*i == (Direction) - 1)
74 #define UP_and_DOWN(d) \
75 Direction d = UP; d != CENTER; d = (d == UP ? DOWN : CENTER)
77 #define DOWN_and_UP(d) \
78 Direction d = DOWN; d != CENTER; d = (d == DOWN ? UP : CENTER)
80 #define LEFT_and_RIGHT(d) \
81 Direction d = LEFT; d != CENTER; d = (d == LEFT ? RIGHT : CENTER)
84 if d > 0: the max operator
85 if d < 0: the min operator
87 template<class T> T minmax (Direction d, T a, T b)
95 // String direction_string (Direction, Axis);
97 #endif // DIRECTION_HH