Fix accidentally introduced recursion
This commit is contained in:
parent
b805757eeb
commit
8c0da67108
|
@ -74,7 +74,7 @@ BEZIER_POLY::BEZIER_POLY( const std::vector<VECTOR2I>& aControlPoints )
|
|||
void BEZIER_POLY::GetPoly( std::vector<VECTOR2I>& aOutput, int aMinSegLen, int aMaxSegCount )
|
||||
{
|
||||
aOutput.clear();
|
||||
std::vector<VECTOR2I> buffer;
|
||||
std::vector<VECTOR2D> buffer;
|
||||
GetPoly( buffer, double( aMinSegLen ), aMaxSegCount );
|
||||
|
||||
for( unsigned ii = 0; ii < buffer.size(); ++ii )
|
||||
|
|
Loading…
Reference in New Issue