LinearFunction

Description

Represents a linear function.

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

struct LinearFunction
{
	Real	A;
	Real	B;


	Real A( void ) const	{ return A;	};
	Real B( void ) const	{ return B;	};

	bool operator == ( const avl::LinearFunction& rhs ) const
	{
		return A == rhs.A && 
			B == rhs.B;
	}

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

};