STEP export: disable history to speed up hole cutting.
This commit is contained in:
parent
dee45a491e
commit
bf16f757ed
|
@ -1020,8 +1020,9 @@ bool STEP_PCB_MODEL::CreatePCB( SHAPE_POLY_SET& aOutline, VECTOR2D aOrigin )
|
||||||
|
|
||||||
// This helps cutting circular holes in zones where a hole is already cut in Clipper
|
// This helps cutting circular holes in zones where a hole is already cut in Clipper
|
||||||
cut.SetFuzzyValue( 0.0005 );
|
cut.SetFuzzyValue( 0.0005 );
|
||||||
cut.SetArguments( cutArgs );
|
cut.SetToFillHistory( false );
|
||||||
|
|
||||||
|
cut.SetArguments( cutArgs );
|
||||||
cut.SetTools( holelist );
|
cut.SetTools( holelist );
|
||||||
cut.Build();
|
cut.Build();
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue