Releases: Kromey/fast_poisson
Releases · Kromey/fast_poisson
v1.0.2
v1.0.0
v0.5.2
v0.5.1
v0.4.0
This version brings several new features and bug fixes:
- Added new
single_precision
feature flag to support use cases that requiref32
instead off64
- Added new
small_rng
feature flag to allow choosing a PRNG with a smaller state overhead - Implement
PoissonIter
as aFusedIterator
to allow more efficientfuse()
operations - Various bug fixes, including fixing the lookup grid size and the point sampling algorithm
This version also changes the licensing to either of Apache 2.0 or MIT licenses.
Documentation fixes
v0.3.1 Bump version
Conversion to Vec
Poisson objects can now be converted directly into Vec; see the docs for details.
Internally, non-seeded Poisson distributions have been corrected to use the recommended method for constructing non-deterministic PRNGs.
N-Dimensional Distributions
- Added support for n-dimensional Poisson distributions
- Dropped direct instantiation of the Poisson struct for the builder pattern
- Leveraged Rust's const generics to return n-dimensional points as arrays
First release
Provides an iterator that lazily evaluates the Poisson disk distribution using Bridson's algorithm.