Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bug sb7code/include/vmath.h #50

Open
Aha-hub opened this issue Dec 20, 2023 · 0 comments
Open

bug sb7code/include/vmath.h #50

Aha-hub opened this issue Dec 20, 2023 · 0 comments

Comments

@Aha-hub
Copy link

Aha-hub commented Dec 20, 2023

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);
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant