OctTrees

July 15, 2020 ยท View on GitHub

Build Status Coverage Status

A Julia library for Quadtree and Octree functionality.

Original author: skariel

Updated to at least v0.7

Examples

#from `runtests.jl`

q = QuadTree(100)

OctTrees.insert!(q, Point(0.1, 0.1))
OctTrees.insert!(q, Point(0.9, 0.9))

q = OctTree(100)

OctTrees.insert!(q, Point(0.1, 0.1, 0.1))
OctTrees.insert!(q, Point(0.9, 0.9, 0.9))


Similar packages

RegionTrees.jl

Octrees.jl

Contents

  1. 1Examples
  2. 2Similar packages