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