This commit is contained in:
Seth Hillbrand 2020-11-18 16:16:43 -08:00 committed by Jon Evans
parent 8521deb38d
commit a28d9f17e8
1 changed files with 13 additions and 0 deletions

View File

@ -79,6 +79,19 @@ ClipperLib::Path SHAPE_LINE_CHAIN::convertToClipper( bool aRequiredOrientation )
} }
void SHAPE_LINE_CHAIN::ConvertToArcs( const std::vector<SHAPE_ARC>& aArcs )
{
int i = 0;
int j = 0;
int direction = 1;
for( SHAPE_ARC& arc :aArcs )
{
}
}
//TODO(SH): Adjust this into two functions: one to convert and one to split the arc into two arcs //TODO(SH): Adjust this into two functions: one to convert and one to split the arc into two arcs
void SHAPE_LINE_CHAIN::convertArc( ssize_t aArcIndex ) void SHAPE_LINE_CHAIN::convertArc( ssize_t aArcIndex )
{ {