Uses of Class
cmsc420.geom.Circle2D

Packages that use Circle2D
cmsc420.geom Provides classes and interfaces for detecting shape intersections in 2D space. 
 

Uses of Circle2D in cmsc420.geom
 

Subclasses of Circle2D in cmsc420.geom
static class Circle2D.Double
          The Double class defines an ellipse specified in double precision.
static class Circle2D.Float
          The Float class defines an ellipse specified in float precision.
 

Methods in cmsc420.geom with parameters of type Circle2D
static boolean Inclusive2DIntersectionVerifier.intersects(Circle2D c1, Circle2D c2)
          Returns true if a circle intersects with another circle.
static boolean Inclusive2DIntersectionVerifier.intersects(java.awt.geom.Point2D point, Circle2D circle)
          Returns true if a point lies inclusively within a circle's bounds.
static boolean Inclusive2DIntersectionVerifier.intersects(java.awt.geom.Rectangle2D rect, Circle2D circle)
          Returns true if a rectangle and circle intersect.