Cleanup unused vars

This commit is contained in:
Seth Hillbrand 2024-06-18 21:35:32 -07:00
parent bcf6b620a8
commit bf68b11ff9
1 changed files with 0 additions and 1 deletions

View File

@ -231,7 +231,6 @@ void PLOTTER::BezierCurve( const VECTOR2I& aStart, const VECTOR2I& aControl1,
int aTolerance, int aLineThickness )
{
// Generic fallback: Quadratic Bezier curve plotted as a polyline
int minSegLen = aLineThickness; // The segment min length to approximate a bezier curve
std::vector<VECTOR2I> ctrlPoints;
ctrlPoints.reserve( 4 );