mirror of
https://github.com/g-truc/glm.git
synced 2025-04-06 05:55:03 +00:00
Fix a bug in glm::perspective() where a degrees-to-radians conversion is being performed twice.
This commit is contained in:
parent
a4aa39f9bd
commit
e6b8f7a40e
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue