Skip to content

mgonnav/OcTree

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Octree

Here we have two implementations of the OcTree.

  • pr-octree contains a recursive implementation of a Point Region OcTree. This one seems to be highly inefficient (unless it is an uncaught bug causing this).
  • region-octree contains a non-recursive implementation of a Region OcTree. This one is way more efficient than its recursive counterpart.

Build

To build this project, run the following commands from the root of the project:

cmake -B build/ -S .
cd build/
make

This will generate pr_octree and region_octree. If you only want to build one of them, you can specify it using

make pr_octree

or

make region_octree

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published