Interface PredicateKernelPointCursor
- 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
and evaluates a predicate on the current position.- Author:
- Owen Feehan
-
Method Summary
Modifier and TypeMethodDescriptiondefault void
notifyChangeSlice
(int z) Notifies the processor that there has been a change in z-coordinate.boolean
test
(KernelPointCursor point) Whether the condition is satisfied for 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 index of the z-slice.
-
test
Whether the condition is satisfied for a particular point?- Parameters:
point
- the point to query.- Returns:
- true iff the condition is satisfied.
-