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:
struct SegmentScanField
{
Segment2D Axis;
real Width;
explicit SegmentScanField
(
real Width_ = 20.0f
) :
Width(Width_)
{}
Segment2D Axis( void ) const { return Axis; };
real Width( void ) 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));
}
};
