Interface ProcessKernelPointCursor

Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface ProcessKernelPointCursor
Processes a KernelPointCursor which includes a Point3i.
Author:
Owen Feehan
  • Method Summary

    Modifier and Type
    Method
    Description
    default void
    Notifies the processor that there has been a change in z-coordinate.
    void
    Processes a particular point.
  • Method Details

    • notifyChangeSlice

      default void notifyChangeSlice(int z)
      Notifies the processor that there has been a change in z-coordinate.
      Parameters:
      z - the coordinate in the Z dimension.
    • process

      void process(KernelPointCursor point)
      Processes a particular point.
      Parameters:
      point - the point to process.