We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I really like this tool, so I was playing around with making a GUI for it (e.g. to easily see the error graph). I was working through the tutorials in the wiki section, and I noticed that Tutorial 4 of 5 (https://github.com/samhocevar/lolremez/wiki/Tutorial-4-of-5:-fixing-lower-order-parameters) includes this code:
float fastsin2(float x) { return x + x * f(x * x); }
Graphing that doesn't giving me the correct results. I worked through the math, and I believe the code should be updated to:
float fastsin2(float x) { return x + x * x * x * f(x * x); }
(It was missing a factor of x^2.)
Am I overlooking something?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I really like this tool, so I was playing around with making a GUI for it (e.g. to easily see the error graph). I was working through the tutorials in the wiki section, and I noticed that Tutorial 4 of 5 (https://github.com/samhocevar/lolremez/wiki/Tutorial-4-of-5:-fixing-lower-order-parameters) includes this code:
Graphing that doesn't giving me the correct results. I worked through the math, and I believe the code should be updated to:
(It was missing a factor of x^2.)
Am I overlooking something?
The text was updated successfully, but these errors were encountered: