| 226 | } |
| 227 | |
| 228 | int Terrain::lineCheck(const vec3 &start, const vec3 &end, vec3 *point, vec3 *normal) { |
| 229 | Model &terrain_simplified_model = Models::Instance()->GetModel(model_id); |
| 230 | return terrain_simplified_model.lineCheckNoBackface(start, end, point, normal); |
| 231 | } |
| 232 | |
| 233 | const int _down_sample = 1; |
| 234 |
nothing calls this directly
no test coverage detected