Class Circle
- java.lang.Object
-
- org.jungrapht.visualization.layout.model.Circle
-
public class Circle extends Object
Simple, immutable Circle class- Author:
- Tom Nelson
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
contains(Point p)
boolean
intersects(Rectangle r)
static Circle
of(Point center, double radius)
-
-
-
Constructor Detail
-
Circle
public Circle(Point center, double radius)
Create an instance with passed parameters- Parameters:
center
- center Pointradius
- edge distance from center
-
-
Method Detail
-
contains
public boolean contains(Point p)
- Parameters:
p
- a Point to test- Returns:
- true if the passed Point is within this Circle
-
intersects
public boolean intersects(Rectangle r)
- Parameters:
r
- a Rectangle to test- Returns:
- true if there is a non-zero intersection of the Rectangle with this Circle
-
-