public interface RadiusStrategy
Modifier and Type | Method and Description |
---|---|
float |
radius(float dx,
float dy)
Returns the radius calculated based on the two distances provided.
|
float |
radius(float startx,
float starty,
float endx,
float endy)
Returns the radius between the two points provided.
|
float |
radius(int dx,
int dy)
Returns the radius calculated using the two distances provided.
|
float |
radius(int startx,
int starty,
int endx,
int endy)
Returns the radius between the two points provided.
|
float radius(int startx, int starty, int endx, int endy)
startx
- starty
- endx
- endy
- float radius(int dx, int dy)
dx
- dy
- float radius(float startx, float starty, float endx, float endy)
startx
- starty
- endx
- endy
- float radius(float dx, float dy)
dx
- dy
-