PathFittingField
Description
The structure defines a field in which a path will be fitted.
Structure fields and default values (if defined) are described below:
struct PathFittingField
{
Path Axis;
real Width;
explicit PathFittingField
(
real Width_ = 20.0f
) :
Width(Width_)
{}
Path Axis( void ) const { return Axis; };
real Width( void ) const { return Width; };
bool operator == ( const avl::PathFittingField& rhs ) const
{
return Axis == rhs.Axis &&
Width == rhs.Width;
}
bool operator != ( const avl::PathFittingField& rhs ) const
{
return !(operator==(rhs));
}
};
