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 givencallbackfor each generated sample.BestCandidateSampling.Sphere.generate(Callback3d callback) Generate 'best candidate' sample call the givencallbackfor each generated sample.voidUniformSampling.Sphere.generate(int numSamples, Callback3d callback) CreatenumSamplesnumber of samples which are uniformly distributed on a unit sphere, and call the givencallbackfor 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 givenseedand generatenumSamplesnumber of sample positions on the unit sphere, and call the givencallbackfor each sample generate.