@FunctionalInterface
public static interface GeometryUtil.VolumeVisitor
| Modifier and Type | Method and Description |
|---|---|
boolean |
visit(int dx,
int dy,
int dz,
float d)
Visit the specified location relative to the origin of the volume.
|
boolean visit(int dx,
int dy,
int dz,
float d)
dx - The x coordinate to visit relative to the origin of the
volume.dy - The y coordinate to visit relative to the origin of the
volume.dz - The z coordinate to visit relative to the origin of the
volume.d - The distance from the origin.true if the process should continue;
false if no more points should be visited in the volume.