Difference between revisions of "rstar"

(Created page with "rstar is a OOP implementation of the R*Tree, can be used to store rectangles in a very efficient way. == Features == * '''insert''' a box in the tree; * '''delete''' a box fr...")
 
 
Line 11: Line 11:
 
* [https://github.com/rick4stley/rstar/ Get the library here]
 
* [https://github.com/rick4stley/rstar/ Get the library here]
 
* [https://github.com/rick4stley/rstar/blob/main/README.md Read me]
 
* [https://github.com/rick4stley/rstar/blob/main/README.md Read me]
 +
* [https://love2d.org/forums/viewtopic.php?f=5&t=91782 Official forum topic]
  
  

Latest revision as of 14:55, 1 August 2021

rstar is a OOP implementation of the R*Tree, can be used to store rectangles in a very efficient way.

Features

  • insert a box in the tree;
  • delete a box from the tree;
  • search all boxes in an area;
  • select all boxes at a given position;
  • draw the tree's structure for debug purposes (LOVE 0.7 is required)

Links