refactored the new floorplan

new helper methods/operator toe geo classes
This commit is contained in:
kazu
2016-05-24 17:01:56 +02:00
parent d0801606b7
commit 51cab55d37
10 changed files with 937 additions and 9 deletions

View File

@@ -46,6 +46,8 @@ struct Point3 {
bool operator == (const Point3& o) const {return x==o.x && y==o.y && z==o.z;}
bool operator != (const Point3& o) const {return x!=o.x || y!=o.y || z!=o.z;}
Point2 xy() const {return Point2(x,y);}
/** read-only array access */