Interface Callback3d


  • public interface Callback3d
    Callback 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
      void onNewSample​(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 point
        y - the y coordinate of the new sample point
        z - the z coordinate of the new sample point