ProfileRidge

Description

Represents ridges found in profile.

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

struct ProfileRidge
{
	Real		Point;
	Real		Magnitude;
	Polarity	Polarity;

	explicit ProfileRidge
	(
		 Polarity Polarity_ = Any 
	) :
		 Polarity(Polarity_) 
	{}

	Real Point( void ) const		{ return Point;		};
	Real Magnitude( void ) const	{ return Magnitude;	};
	Polarity Polarity( void ) const	{ return Polarity;	};

	bool operator == ( const avl::ProfileRidge& rhs ) const
	{
		return Point == rhs.Point && 
			Magnitude == rhs.Magnitude && 
			Polarity == rhs.Polarity;
	}

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

};