worked on grid generation
minor editor changes
This commit is contained in:
@@ -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));
|
||||
|
||||
Reference in New Issue
Block a user