Package org.joml.sampling
Interface Callback3d
public interface Callback3d
Callback used for notifying about a new generated 3D sample.
- Author:
- Kai Burjack
-
Method Summary
Modifier and TypeMethodDescriptionvoidonNewSample(float x, float y, float z) Will be called whenever a new sample with the given coordinates(x, y, z)is generated.
-
Method Details
-
onNewSample
void onNewSample(float x, float y, float z) Will be called whenever a new sample with the given coordinates(x, y, z)is generated.- Parameters:
x- the x coordinate of the new sample pointy- the y coordinate of the new sample pointz- the z coordinate of the new sample point
-