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() const { return Point1; };
Real Point2() const { return Point2; };
float Width() 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));
}
};
