Merge branch '0.9.4' of https://github.com/g-truc/glm into 0.9.5

This commit is contained in:
Christophe Riccio
2013-02-10 19:25:38 +01:00
2 changed files with 2 additions and 2 deletions

View File

@@ -242,7 +242,7 @@ namespace glm
valType const rad = glm::radians(fovy);
#endif
valType range = tan(radians(rad / valType(2))) * zNear;
valType range = tan(rad / valType(2)) * zNear;
valType left = -range * aspect;
valType right = range * aspect;
valType bottom = -range;