mirror of
https://github.com/g-truc/glm.git
synced 2025-04-08 06:43:10 +00:00
Merge branch '0.9.8'
This commit is contained in:
commit
029f1c4738
2 changed files with 2 additions and 1 deletions
|
@ -14,7 +14,7 @@ namespace glm
|
|||
typename genType::value_type d = glm::dot(dir, planeNormal);
|
||||
typename genType::value_type Epsilon = std::numeric_limits<typename genType::value_type>::epsilon();
|
||||
|
||||
if(d < Epsilon)
|
||||
if(d < -Epsilon)
|
||||
{
|
||||
intersectionDistance = glm::dot(planeOrig - orig, planeNormal) / d;
|
||||
return true;
|
||||
|
|
|
@ -87,6 +87,7 @@ glm::mat4 camera(float Translate, glm::vec2 const & Rotate)
|
|||
#### Fixes:
|
||||
- Fixed GTC_packing test failing on GCC x86 due to denorms #212 #577
|
||||
- Fixed POPCNT optimization build in Clang #512
|
||||
- Fixed intersectRayPlane returns true in parallel case #578
|
||||
|
||||
---
|
||||
### [GLM 0.9.8.3](https://github.com/g-truc/glm/releases/tag/0.9.8.3) - 2016-11-12
|
||||
|
|
Loading…
Add table
Reference in a new issue