Skip to content

Instantly share code, notes, and snippets.

@mgerhardy
mgerhardy / svo.hpp
Created June 7, 2020 20:51 — forked from Eisenwave/svo.hpp
C++ implementation of a sparse voxel octree
#ifndef SVO_HPP
#define SVO_HPP
#include "common_types.hpp"
#include "vec.hpp"
#include "vec_math.hpp"
#include "util_bits.hpp"
#include "util_common.hpp"
#include <algorithm>