(svn r17000) -Change: allow overbuilding/extending waypoints

This commit is contained in:
rubidium
2009-07-30 22:06:54 +00:00
parent 45c9a747db
commit c2fdb85c0d
6 changed files with 112 additions and 26 deletions

View File

@@ -118,9 +118,10 @@ DECLARE_POSTFIX_INCREMENT(DiagDirDiff);
* align the north-east edge (and south-west) edge.
*/
enum Axis {
AXIS_X = 0, ///< The X axis
AXIS_Y = 1, ///< The y axis
AXIS_END ///< Used for iterations
AXIS_X = 0, ///< The X axis
AXIS_Y = 1, ///< The y axis
AXIS_END, ///< Used for iterations
INVALID_AXIS = 0xFF, ///< Flag for an invalid Axis
};
#endif /* DIRECTION_TYPE_H */