Uses of Class
org.starhope.appius.geometry.Circle

Packages that use Circle
org.starhope.appius.geometry   
 

Uses of Circle in org.starhope.appius.geometry
 

Fields in org.starhope.appius.geometry declared as Circle
protected  Circle Polygon.boundingCircle
          WRITEME: Document this brpocock@star-hope.org
 

Methods in org.starhope.appius.geometry that return Circle
 Circle Polygon.getBoundingCircle()
           
 Circle Circle.scale(double sizeScalar)
           
 Circle Circle.translate(Coord2D coord2d)
          WRITEME: Document this method brpocock@star-hope.org
 Circle Circle.translate(double x, double y)
           
 

Methods in org.starhope.appius.geometry with parameters of type Circle
 boolean Circle.intersectsCircle(Circle circle)
          Determines if this circle intersects with another circle
 boolean Polygon.intersectsCircle(Circle circle)
          WRITEME: Document this method brpocock@star-hope.org
 boolean Rectangle.intersectsCircle(Circle circle)
           
 boolean PolygonPrimitive.intersectsCircle(Circle circle)
          Determines if the polygon intersects a circle
 

Constructors in org.starhope.appius.geometry with parameters of type Circle
Polygon(Coord2D[] newPoints, LineSeg2D[] newSegments, Circle newBoundingCircle)
          Private constructor used during internal changes to avoid the overhead of recalcuating bounding stuff ASSUMES you know what you're doing!