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
Now, to add a point, you have to do:
tree.insert([20, 40, 20, 40]);
It would be simplier to do:
tree.insert([20, 40]);
What do you think?
The text was updated successfully, but these errors were encountered:
You can do this now by specifying format as ['[0]', '[1]', '[0]', '[1]'].
['[0]', '[1]', '[0]', '[1]']
Sorry, something went wrong.
You mean, tree.insert([20, 40, '[0]', '[1]']); inserts a point at 20,40?
tree.insert([20, 40, '[0]', '[1]']);
No, I mean:
var tree = rbush(9, ['[0]', '[1]', '[0]', '[1]']); tree.insert([20, 40]);
Oh, thanks!
No branches or pull requests
Now, to add a point, you have to do:
It would be simplier to do:
What do you think?
The text was updated successfully, but these errors were encountered: