ProfileSection

Description

Represents sections found in profile.

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

struct ProfileSection
{
	Real	Point1;
	Real	Point2;
	float	Width;


	Real Point1( void ) const	{ return Point1;	};
	Real Point2( void ) const	{ return Point2;	};
	float Width( void ) const	{ return Width;		};

	bool operator == ( const avl::ProfileSection& rhs ) const
	{
		return Point1 == rhs.Point1 && 
			Point2 == rhs.Point2 && 
			Width == rhs.Width;
	}

	bool operator != ( const avl::ProfileSection& rhs ) const
	{
		return !(operator==(rhs));
	}

};