| 18 | namespace grid_map { |
| 19 | |
| 20 | SignedDistanceField::SignedDistanceField() |
| 21 | : maxDistance_(std::numeric_limits<float>::max()), |
| 22 | zIndexStartHeight_(0.0), |
| 23 | resolution_(0.0), |
| 24 | lowestHeight_(-1e5) // We need some precision. |
| 25 | { |
| 26 | } |
| 27 | |
| 28 | SignedDistanceField::~SignedDistanceField() |
| 29 | { |
nothing calls this directly
no outgoing calls
no test coverage detected