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
2016-01-21 20:01:20 +01:00

18 lines
248 B
C

#ifndef STAIR_H
#define STAIR_H
#include "../geo/BBox2.h"
#include "../geo/Point2.h"
struct Stair {
/** bbox with all starting points */
BBox2 from;
/** the direction to move all the starting points to */
Point2 dir;
};
#endif // STAIR_H