Skip to content

Commit

Permalink
Fixed acsch #698
Browse files Browse the repository at this point in the history
  • Loading branch information
Groovounet committed Nov 22, 2017
1 parent 5bcb204 commit 529de50
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion glm/gtc/reciprocal.inl
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ namespace glm
GLM_FUNC_QUALIFIER genType acsch(genType x)
{
GLM_STATIC_ASSERT(std::numeric_limits<genType>::is_iec559, "'acsch' only accept floating-point values");
return acsch(genType(1) / x);
return asinh(genType(1) / x);
}

template<length_t L, typename T, qualifier Q>
Expand Down
1 change: 1 addition & 0 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@ glm::mat4 camera(float Translate, glm::vec2 const& Rotate)
- Fixed Better follow GLSL min and max specification #372
- Fixed quaternion constructor from two vectors special cases #469
- Fixed glm::to_string on quaternions wrong components order #681
- Fixed acsch #698
#### Deprecation:
- Requires Visual Studio 2013, GCC 4.7, Clang 3.4, Cuda 7, ICC 2013 or a C++11 compiler
Expand Down

0 comments on commit 529de50

Please sign in to comment.