Line width already factored into polygon shapes
Fixes https://gitlab.com/kicad/code/kicad/-/issues/7130
This commit is contained in:
parent
e27bd5cf15
commit
49f454e32b
|
@ -701,7 +701,7 @@ void BOARD_ADAPTER::addShapeWithClearance( const PCB_SHAPE* aShape,
|
|||
{
|
||||
SHAPE_POLY_SET polyList;
|
||||
|
||||
aShape->TransformShapeWithClearanceToPolygon( polyList, aLayerId, linewidth / 2,
|
||||
aShape->TransformShapeWithClearanceToPolygon( polyList, aLayerId, 0,
|
||||
ARC_HIGH_DEF, ERROR_INSIDE );
|
||||
|
||||
polyList.Simplify( SHAPE_POLY_SET::PM_FAST );
|
||||
|
|
Loading…
Reference in New Issue