to be coherent with the grid decimation algorithm
| 54 | |
| 55 | // to be coherent with the grid decimation algorithm |
| 56 | bool contains(BOX2D box, double x, double y) |
| 57 | { return box.minx <= x && x < box.maxx && box.miny <= y && y < box.maxy; } |
| 58 | |
| 59 | TEST(DecimationFilterTest, GridDecimationFilterTest_test_empty) |
| 60 | { |