Class Circle


  • public class Circle
    extends Object
    Simple, immutable Circle class
    Author:
    Tom Nelson
    • Field Detail

      • center

        public final Point center
        the center Point of this circle
      • radius

        public final double radius
        the radius of this Circle
      • UNIT

        public static final Circle UNIT
        a Circle at the origin (0,0) with radius 1
    • Constructor Detail

      • Circle

        public Circle​(Point center,
                      double radius)
        Create an instance with passed parameters
        Parameters:
        center - center Point
        radius - edge distance from center
    • Method Detail

      • of

        public static Circle of​(Point center,
                                double radius)
      • 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