29#ifndef _FILLED_CIRCLE_2D_H_ 
   30#define _FILLED_CIRCLE_2D_H_ 
A base class for any item which can be embedded within the BOARD container class, and therefore insta...
 
bool Overlaps(const BBOX_2D &aBBox) const override
Test if the box overlaps the object.
 
bool IsPointInside(const SFVEC2F &aPoint) const override
 
INTERSECTION_RESULT IsBBoxInside(const BBOX_2D &aBBox) const override
Test this object if it's completely outside, intersects, or is completely inside aBBox.
 
bool Intersects(const BBOX_2D &aBBox) const override
a.Intersects(b) ⇔ !a.Disjoint(b) ⇔ !(a ∩ b = ∅)
 
float GetRadiusSquared() const
 
bool Intersect(const RAYSEG2D &aSegRay, float *aOutT, SFVEC2F *aNormalOut) const override
 
const SFVEC2F & GetCenter() const
 
FILLED_CIRCLE_2D(const SFVEC2F &aCenter, float aRadius, const BOARD_ITEM &aBoardItem)
 
OBJECT_2D(OBJECT_2D_TYPE aObjType, const BOARD_ITEM &aBoardItem)
 
Manage a bounding box defined by two SFVEC2F min max points.