| 45 | PointCloud cloud; |
| 46 | |
| 47 | void |
| 48 | init () |
| 49 | { |
| 50 | for (int x=-20; x<20; x++) |
| 51 | for (int y=-20; y<20; y++) |
| 52 | for (int z=-20; z<20; z++) |
| 53 | cloud.push_back (Point (static_cast<float> (x), static_cast<float> (y), static_cast<float> (z))); |
| 54 | } |
| 55 | |
| 56 | ////////////////////////////////////////////////////////////////////////////////////////////////////////////////// |
| 57 |
no test coverage detected