| 135 | } |
| 136 | |
| 137 | float AgentTileHelper::getDistance(Vec3<float> from, Vec3<float> to) const |
| 138 | { |
| 139 | return std::abs(from.x - to.x) + std::abs(from.y - to.y) + std::abs(from.z - to.z); |
| 140 | } |
| 141 | |
| 142 | float AgentTileHelper::getDistance(Vec3<float> from, Vec3<float> toStart, Vec3<float> toEnd) const |
| 143 | { |
no outgoing calls
no test coverage detected