Skip to content

Instantly share code, notes, and snippets.

@kleino
kleino / colorized_voronoi.py
Last active December 18, 2018 17:27 — forked from pv/colorized_voronoi.py
Python3 version
import collections
import numpy as np
import matplotlib
import matplotlib.pyplot as plt
from scipy.spatial import Delaunay, KDTree
# an adaptation of https://stackoverflow.com/a/15783581/60982
# using ideas from https://stackoverflow.com/a/9471601/60982