add comment

This commit is contained in:
Eric Wasylishen 2017-02-14 20:12:03 -07:00
parent f890d739d3
commit 29ecd209a2
1 changed files with 1 additions and 0 deletions

View File

@ -320,6 +320,7 @@ static inline void glm_to_vec3_t(const glm::vec3 &glm, vec3_t out) {
out[2] = glm.z;
}
// Returns (0 0 0) if we couldn't determine the normal
glm::vec3 GLM_FaceNormal(std::vector<glm::vec3> points);
std::pair<bool, glm::vec4> GLM_MakeInwardFacingEdgePlane(const glm::vec3 &v0, const glm::vec3 &v1, const glm::vec3 &faceNormal);
std::vector<glm::vec4> GLM_MakeInwardFacingEdgePlanes(std::vector<glm::vec3> points);