Package org.joml.sampling
Interface Callback3d
-
public interface Callback3dCallback used for notifying about a new generated 3D sample.- Author:
- Kai Burjack
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonNewSample(float x, float y, float z)Will be called whenever a new sample with the given coordinates(x, y, z)is generated.
-
-
-
Method Detail
-
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
-
-