Delegate PoissonDiskSampler.BoundChecker
A delegate that determines whether a given 2D point falls within the sampling region. Used by Sample(IRandomSource, Vector2, BoundChecker, float, int) to support arbitrary convex and concave boundary shapes.
Namespace: Scylla.Core.Util.Random
Assembly: ScyllaCore.dll
Syntax
public delegate bool PoissonDiskSampler.BoundChecker(Vector2 point)
Parameters
| Type | Name | Description |
|---|---|---|
| Vector2 | point | The candidate point whose membership in the sampling region is to be tested. |
Returns
| Type | Description |
|---|---|
| bool |
|