Gerber plotter: work around CAM350 circle bug.

Some fabs still have issues with circles in 4.6 mm format.

master commit: 9c2c291255
This commit is contained in:
Alex Shvartzkop 2023-12-05 19:41:50 +03:00
parent 5140fd7819
commit 9850541433
1 changed files with 2 additions and 1 deletions

View File

@ -821,7 +821,8 @@ void GERBER_PLOTTER::Rect( const VECTOR2I& p1, const VECTOR2I& p2, FILL_T fill,
void GERBER_PLOTTER::Circle( const VECTOR2I& aCenter, int aDiameter, FILL_T aFill, int aWidth )
{
Arc( aCenter, ANGLE_0, ANGLE_360, aDiameter / 2, aFill, aWidth );
Arc( aCenter, ANGLE_0, ANGLE_180, aDiameter / 2, aFill, aWidth );
Arc( aCenter, ANGLE_180, ANGLE_360, aDiameter / 2, aFill, aWidth );
}