forked from icaven/glm
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Closed
Description
So when working on a Python redistribution of GLM, I noticed an accidental recursion in reciprocal.inl.
[...]
// acsch
template<typename genType>
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);
}
[...]
it should be
return asinh(genType(1) / x);