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.
Processes a
KernelPointCursor which includes a Point3i.- Author:
- Owen Feehan
-
Method Summary
Modifier and TypeMethodDescriptiondefault voidnotifyChangeSlice(int z) Notifies the processor that there has been a change in z-coordinate.voidprocess(KernelPointCursor point) 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
Processes a particular point.- Parameters:
point- the point to process.
-