Uses of Interface
org.joml.sampling.Callback3d
-
Packages that use Callback3d Package Description org.joml.sampling Contains classes for generating sampling patterns. -
-
Uses of Callback3d in org.joml.sampling
Methods in org.joml.sampling with parameters of type Callback3d Modifier and Type Method Description BestCandidateSampling.Cube
BestCandidateSampling.Cube. generate(Callback3d callback)
Generate 'best candidate' sample positions and call the givencallback
for each generated sample.BestCandidateSampling.Sphere
BestCandidateSampling.Sphere. generate(Callback3d callback)
Generate 'best candidate' sample call the givencallback
for each generated sample.void
UniformSampling.Sphere. generate(int numSamples, Callback3d callback)
CreatenumSamples
number of samples which are uniformly distributed on a unit sphere, and call the givencallback
for each sample generated.Constructors in org.joml.sampling with parameters of type Callback3d Constructor Description Sphere(long seed, int numSamples, Callback3d callback)
Create a new instance ofUniformSampling.Sphere
, initialize the random number generator with the givenseed
and generatenumSamples
number of sample positions on the unit sphere, and call the givencallback
for each sample generate.
-