SegmentScanField
Description
The structure defines a rectangular field in which a series of scan will be performed.Structure fields and default values (if defined) are described below:
- Segment2D Axis
- float Width = 20.0f
struct SegmentScanField
{
	Segment2D	Axis;
	float		Width;
	explicit SegmentScanField
	(
		float Width_ = 20.0f 
	) :
		 Width(Width_) 
	{}
	Segment2D Axis() const	{ return Axis;	};
	float Width() const		{ return Width;	};
	bool operator == ( const avl::SegmentScanField& rhs ) const
	{
		return Axis == rhs.Axis && 
			Width == rhs.Width;
	}
	bool operator != ( const avl::SegmentScanField& rhs ) const
	{
		return !(operator==(rhs));
	}
};

