public static class BestCandidateSampling.Quad extends Object
| Constructor and Description |
|---|
Quad()
Create a new instance of
BestCandidateSampling.Quad to configure and generate 'best candidate' sample positions on the unit quad. |
| Modifier and Type | Method and Description |
|---|---|
BestCandidateSampling.Quad |
generate(Callback2d callback)
Generate 'best candidate' sample positions and call the given
callback for each generated sample. |
BestCandidateSampling.Quad |
generate(float[] xyzs)
Generate 'best candidate' sample positions and store the coordinates of all generated samples into the given
xyzs float array. |
BestCandidateSampling.Quad |
generate(FloatBuffer xys)
Generate 'best candidate' sample positions and store the coordinates of all generated samples into the given
xys FloatBuffer. |
BestCandidateSampling.Quad |
numCandidates(int numCandidates)
Set the number of candidates to try for each generated sample.
|
BestCandidateSampling.Quad |
numSamples(int numSamples)
Set the number of samples to generate.
|
BestCandidateSampling.Quad |
seed(long seed)
Set the seed to initialize the pseudo-random number generator with.
|
public Quad()
BestCandidateSampling.Quad to configure and generate 'best candidate' sample positions on the unit quad.public BestCandidateSampling.Quad seed(long seed)
seed - the seed valuepublic BestCandidateSampling.Quad numSamples(int numSamples)
numSamples - the number of samplespublic BestCandidateSampling.Quad numCandidates(int numCandidates)
numCandidates - the number of candidates to trypublic BestCandidateSampling.Quad generate(float[] xyzs)
xyzs float array.
This method performs heap allocations, so should be used sparingly.
xyzs - will hold the x, y and z coordinates of all samples in the order XYZXYZXYZ....
This array must have a length of at least numSamplespublic BestCandidateSampling.Quad generate(FloatBuffer xys)
xys FloatBuffer.
The samples will be written starting at the current position of the FloatBuffer. The position of the FloatBuffer will not be modified.
This method performs heap allocations, so should be used sparingly.
xys - will hold the x and y coordinates of all samples in the order XYXYXY.... This FloatBuffer must have at least numSamples remaining elements. The position of
the buffer will not be modified by this methodpublic BestCandidateSampling.Quad generate(Callback2d callback)
callback for each generated sample.
This method performs heap allocations, so should be used sparingly.
callback - will be called with the coordinates of each generated sample positionCopyright © 2015–2019 JOML. All rights reserved.