worked on 3D walls

This commit is contained in:
k-a-z-u
2018-07-24 18:08:08 +02:00
parent 3d79fd5af0
commit f7e4323d58
11 changed files with 261 additions and 49 deletions

View File

@@ -18,6 +18,10 @@ public:
pts.push_back(p);
}
void add(std::initializer_list<Point2> lst) {
for (const Point2 p : lst) {add(p);}
}
std::vector<Point2>::iterator begin() {return pts.begin();}
std::vector<Point2>::iterator end() {return pts.end();}