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
snowcapped/src/main/BuilderData/SimpleSpline.ts
Line 80 in 4ce7d2e
'a' between -0.6666667 and 0. So a - 0.6666667 will be between -1.3333337 and -0.6666667.
The text was updated successfully, but these errors were encountered:
You are absolutely right. I think this line should read
if (a + 0.666667 < 0)
and the if above shouldn't have the ridge < -1 case.
ridge < -1
I don't think the case with ridge < -1 is used anyways, but it makes sense to have this function correct in all cases anyways. I'll fix it eventually.
Sorry, something went wrong.
No branches or pull requests
snowcapped/src/main/BuilderData/SimpleSpline.ts
Line 80 in 4ce7d2e
'a' between -0.6666667 and 0. So a - 0.6666667 will be between -1.3333337 and -0.6666667.
The text was updated successfully, but these errors were encountered: