Skip to content

Instantly share code, notes, and snippets.

View AntSimi's full-sized avatar
👋

Antoine Delepoulle AntSimi

👋
View GitHub Profile
@jaantollander
jaantollander / quadtree.py
Created March 6, 2017 15:51
Quadtree implementation with Python and Numba
import numpy as np
import numba
from numba import deferred_type, optional, f8
node_type = deferred_type()
spec = (
("value", optional(f8[:, :])),
("center", f8[:]),
("length", f8),