| 46 | using namespace pdal; |
| 47 | |
| 48 | TEST(GridDecimationFilterTest, create) |
| 49 | { |
| 50 | StageFactory f; |
| 51 | Stage* filter(f.createStage("filters.gridDecimation")); |
| 52 | EXPECT_TRUE(filter); |
| 53 | } |
| 54 | |
| 55 | // to be coherent with the grid decimation algorithm |
| 56 | bool contains(BOX2D box, double x, double y) |
nothing calls this directly
no test coverage detected