mirror of
https://github.com/g-truc/glm.git
synced 2024-11-10 04:31:47 +00:00
Added assert in inversesqrt to detect division by zero. #61
This commit is contained in:
parent
bc9aaa4033
commit
b95a53095b
@ -146,6 +146,7 @@ namespace _detail
|
||||
)
|
||||
{
|
||||
GLM_STATIC_ASSERT(detail::type<genType>::is_float, "'inversesqrt' only accept floating-point input");
|
||||
assert(x > genType(0));
|
||||
|
||||
return genType(1) / ::std::sqrt(x);
|
||||
}
|
||||
|
@ -42,6 +42,7 @@ GLM 0.9.4.4: 2013-0X-XX
|
||||
- Fixed slerp when costheta is close to 1
|
||||
- Fixed mat4x2 value_type constructor
|
||||
- Fixed glm.natvis for Visual C++ 12 #82
|
||||
- Added assert in inversesqrt to detect division by zero. #61
|
||||
|
||||
================================================================================
|
||||
GLM 0.9.4.3: 2013-03-20
|
||||
|
Loading…
Reference in New Issue
Block a user