Circle2D

Description

Represents a circle described by its center and radius length.

struct Circle2D
{		
	Point2D center;
	atl::real radius;
	
	atl::real Radius( void ) const;
	Point2D Center( void ) const;
	atl::real X( void ) const;	
	atl::real Y( void ) const;	

	bool operator == ( const avl::Circle2D& rhs ) const;

	bool operator != ( const avl::Circle2D& rhs ) const;
};

Structure Fields

Type fields and default values (if defined) are described below:

Name Type Description
Center Point2D
Radius real