Uses of Interface
org.joml.sampling.Callback3d
Packages that use Callback3d
-
Uses of Callback3d in org.joml.sampling
Methods in org.joml.sampling with parameters of type Callback3dModifier and TypeMethodDescriptionBestCandidateSampling.Cube.generate
(Callback3d callback) Generate 'best candidate' sample positions and call the givencallback
for each generated sample.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 Callback3dModifierConstructorDescriptionSphere
(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.