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