Check a line against the model for collision against front face only
| 1861 | |
| 1862 | // Check a line against the model for collision against front face only |
| 1863 | int Model::lineCheckNoBackface(const vec3 &p1, const vec3 &p2, vec3 *p, vec3 *normal) const { |
| 1864 | return lineCheck(p1, p2, p, normal, false); |
| 1865 | } |
| 1866 | |
| 1867 | float StaticCalcAverageTriangleEdge(const std::vector<unsigned> &faces, const std::vector<float> &vertices) { |
| 1868 | float total_vert = 0.0f; |
no outgoing calls
no test coverage detected