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
There seems to be a typo here ((min + min)/2):
BHoM_Engine/Data_Engine/Create/DomainTree.cs
Line 130 in d13f40b
The line should read ((min + max)/2) if ((data.DomainBox.Domains[index].Min + data.DomainBox.Domains[index].Max) / 2 < centre)
if ((data.DomainBox.Domains[index].Min + data.DomainBox.Domains[index].Max) / 2 < centre)
The text was updated successfully, but these errors were encountered:
vietle-bh
Successfully merging a pull request may close this issue.
Description:
There seems to be a typo here ((min + min)/2):
BHoM_Engine/Data_Engine/Create/DomainTree.cs
Line 130 in d13f40b
Steps to reproduce:
Expected behaviour:
The line should read ((min + max)/2)
if ((data.DomainBox.Domains[index].Min + data.DomainBox.Domains[index].Max) / 2 < centre)
Test file(s):
The text was updated successfully, but these errors were encountered: