VIEW_OVERLAY: implement Line() method

This commit is contained in:
Tomasz Wlostowski 2020-09-05 01:09:05 +02:00
parent 83ac2070fe
commit a31c9ae7af
1 changed files with 3 additions and 0 deletions

View File

@ -335,16 +335,19 @@ void VIEW_OVERLAY::Segment( const VECTOR2D& aStartPoint, const VECTOR2D& aEndPoi
void VIEW_OVERLAY::Polyline( std::deque<VECTOR2D>& aPointList )
{
// fixme: implement
}
void VIEW_OVERLAY::Polyline( const VECTOR2D aPointList[], int aListSize )
{
// fixme: implement
}
void VIEW_OVERLAY::Polyline( const SHAPE_LINE_CHAIN& aLineChain )
{
m_commands.push_back( new COMMAND_POLY_POLYLINE( aLineChain ) );
}