-
Notifications
You must be signed in to change notification settings - Fork 27
Home
Sergey Kosarevsky edited this page May 6, 2014
·
4 revisions
Poisson Disk Points Generator
(C) Sergey Kosarevsky, 2014
Poisson disk points generator in C++ in a single file
To compile: gcc Poisson.cpp -std=c++11 -lstdc++
Algorithm description can be found in "Fast Poisson Disk Sampling in Arbitrary Dimensions" http://people.cs.ubc.ca/~rbridson/docs/bridson-siggraph07-poissondisk.pdf
Implementation is based on http://devmag.org.za/2009/05/03/poisson-disk-sampling/