worked on grid generation

minor editor changes
This commit is contained in:
2016-07-13 19:04:01 +02:00
parent 2935f468fc
commit 86c76b1284
14 changed files with 90 additions and 51 deletions

View File

@@ -79,8 +79,8 @@ public:
float sy1 = p.s.yms(my1);
float sx2 = p.s.xms(mx2);
float sy2 = p.s.yms(my2);
float sw = abs(sx1-sx2);
float sh = abs(sy1-sy2);
float sw = std::abs(sx1-sx2);
float sh = std::abs(sy1-sy2);
bbox = BBox2();
bbox.add(Point2(mx1, my1));