Interface ProcessVoxelBufferBinary<S,T>
- Type Parameters:
S- first buffer-typeT- second buffer-type
- 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 3D point like
ProcessPoint but also retrieves two VoxelBuffers
for the current z-slice.
It is very similar to ProcessBufferUnary but uses VoxelBuffer instead of a
Buffer.
- Author:
- Owen Feehan
-
Method Summary
Modifier and TypeMethodDescriptionvoidprocess(VoxelBuffer<S> buffer1, VoxelBuffer<T> buffer2, int offset) Processes a voxel location in a buffer
-
Method Details
-
process
Processes a voxel location in a buffer- Parameters:
buffer1- first buffer for the current slice for whichoffsetrefers to a particular locationbuffer2- second buffer for the current slice for whichoffsetrefers to a particular locationoffset- an offset value for the current slice (i.e. indexing XY only, but not Z)
-