You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Lines 1298 and 1304 of vmath.h have a bug in the implementation of mix(). According to the definition of linear interpolation, the code implementation seems to be should be
template <typename T>
static inline T mix(const T& A, const T& B, typename T::element_type t)
{
return A + t * (B - A);
}
The text was updated successfully, but these errors were encountered:
Lines 1298 and 1304 of vmath.h have a bug in the implementation of mix(). According to the definition of linear interpolation, the code implementation seems to be should be
The text was updated successfully, but these errors were encountered: