This repository has been archived on 2020-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
Files
Indoor/floorplan/Stair.h
FrankE e6329e1db4 dijkstra is now bleching fast
deleting from the grid is now bleaching fast
added new helper methods
many new test-cases
many new methods for geo classes and others
added a bunch of new grid-walkers
2016-01-26 18:13:30 +01:00

19 lines
293 B
C

#ifndef STAIR_H
#define STAIR_H
#include "../geo/BBox2.h"
#include "../geo/Point2.h"
/** a simple stair with a slope from A to B */
struct Stair {
/** starting line of the stair */
Line2 start;
/** the direction to move all the starting points to */
Point2 dir;
};
#endif // STAIR_H