mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-04-04 23:25:30 +00:00
Give Clipper1 a Viking funeral
Clears out the last spot where we were only using Clipper1 (how'd I miss that?) and remove all calls to the Clipper1 structures
This commit is contained in:
parent
fd137279c8
commit
e9bc8cfe9d
3d-viewer
3d_canvas
3d_rendering
bitmap2component
common
eeschema
gerbview
include
libs/kimath
pcbnew
autorouter
board.cppconvert_shape_list_to_polygon.cppdrc
drc_test_provider_annular_width.cppdrc_test_provider_connection_width.cppdrc_test_provider_disallow.cppdrc_test_provider_physical_clearance.cppdrc_test_provider_sliver_checker.cppdrc_test_provider_solder_mask.cppdrc_test_provider_text_dims.cpp
exporters
footprint.cppgenerators
pad.cpppad_custom_shape_functions.cpppcb_base_frame.cpppcb_io
altium
cadstar
easyeda
easyedapro
fabmaster
ipc2581
kicad_legacy
kicad_sexpr
odbpp
router
specctra_import_export
teardrop
tools
board_editor_control.cppconvert_tool.cppitem_modification_routine.cpppcb_selection_tool.cppzone_create_helper.cpp
tracks_cleaner.cppzone.cppzone_filler.cppqa
tests
tools
drc_proto
pcbnew_tools/tools/polygon_triangulation
pns
thirdparty
@ -947,9 +947,7 @@ bool BOARD_ADAPTER::createBoardPolygon( wxString* aErrorMsg )
|
||||
success = BuildFootprintPolygonOutlines( m_board, m_board_poly,
|
||||
m_board->GetDesignSettings().m_MaxError,
|
||||
chainingEpsilon );
|
||||
|
||||
// Make polygon strictly simple to avoid issues (especially in 3D viewer)
|
||||
m_board_poly.Simplify( SHAPE_POLY_SET::PM_STRICTLY_SIMPLE );
|
||||
m_board_poly.Simplify();
|
||||
|
||||
if( !success && aErrorMsg )
|
||||
{
|
||||
|
@ -650,7 +650,7 @@ void BOARD_ADAPTER::addShape( const PCB_SHAPE* aShape, CONTAINER_2D_BASE* aConta
|
||||
aShape->TransformShapeToPolygon( polyList, UNDEFINED_LAYER, 0, ARC_HIGH_DEF,
|
||||
ERROR_INSIDE );
|
||||
|
||||
polyList.Simplify( SHAPE_POLY_SET::PM_FAST );
|
||||
polyList.Simplify();
|
||||
|
||||
if( margin != 0 )
|
||||
{
|
||||
@ -700,7 +700,7 @@ void BOARD_ADAPTER::addShape( const PCB_SHAPE* aShape, CONTAINER_2D_BASE* aConta
|
||||
// Some polygons can be a bit complex (especially when coming from a
|
||||
// picture ot a text converted to a polygon
|
||||
// So call Simplify before calling ConvertPolygonToTriangles, just in case.
|
||||
polyList.Simplify( SHAPE_POLY_SET::PM_FAST );
|
||||
polyList.Simplify();
|
||||
|
||||
if( polyList.IsEmpty() ) // Just for caution
|
||||
break;
|
||||
|
@ -780,10 +780,10 @@ void BOARD_ADAPTER::createLayers( REPORTER* aStatusReporter )
|
||||
// End Build Copper layers
|
||||
|
||||
// This will make a union of all added contours
|
||||
m_TH_ODPolys.Simplify( SHAPE_POLY_SET::PM_FAST );
|
||||
m_NPTH_ODPolys.Simplify( SHAPE_POLY_SET::PM_FAST );
|
||||
m_viaTH_ODPolys.Simplify( SHAPE_POLY_SET::PM_FAST );
|
||||
m_viaAnnuliPolys.Simplify( SHAPE_POLY_SET::PM_FAST );
|
||||
m_TH_ODPolys.Simplify();
|
||||
m_NPTH_ODPolys.Simplify();
|
||||
m_viaTH_ODPolys.Simplify();
|
||||
m_viaAnnuliPolys.Simplify();
|
||||
|
||||
// Build Tech layers
|
||||
// Based on:
|
||||
@ -1022,7 +1022,7 @@ void BOARD_ADAPTER::createLayers( REPORTER* aStatusReporter )
|
||||
}
|
||||
|
||||
// This will make a union of all added contours
|
||||
layerPoly->Simplify( SHAPE_POLY_SET::PM_FAST );
|
||||
layerPoly->Simplify();
|
||||
}
|
||||
}
|
||||
// End Build Tech layers
|
||||
@ -1061,14 +1061,12 @@ void BOARD_ADAPTER::createLayers( REPORTER* aStatusReporter )
|
||||
// TRIM PLATED COPPER TO SOLDERMASK
|
||||
if( m_layers_poly.find( F_Mask ) != m_layers_poly.end() )
|
||||
{
|
||||
m_frontPlatedCopperPolys->BooleanIntersection( *m_layers_poly.at( F_Mask ),
|
||||
SHAPE_POLY_SET::PM_FAST );
|
||||
m_frontPlatedCopperPolys->BooleanIntersection( *m_layers_poly.at( F_Mask ) );
|
||||
}
|
||||
|
||||
if( m_layers_poly.find( B_Mask ) != m_layers_poly.end() )
|
||||
{
|
||||
m_backPlatedCopperPolys->BooleanIntersection( *m_layers_poly.at( B_Mask ),
|
||||
SHAPE_POLY_SET::PM_FAST );
|
||||
m_backPlatedCopperPolys->BooleanIntersection( *m_layers_poly.at( B_Mask ) );
|
||||
}
|
||||
|
||||
// Subtract plated copper from unplated copper
|
||||
@ -1077,15 +1075,15 @@ void BOARD_ADAPTER::createLayers( REPORTER* aStatusReporter )
|
||||
|
||||
if( m_layers_poly.find( F_Cu ) != m_layers_poly.end() )
|
||||
{
|
||||
m_layers_poly[F_Cu]->BooleanSubtract( *m_frontPlatedPadAndGraphicPolys, SHAPE_POLY_SET::PM_FAST );
|
||||
m_layers_poly[F_Cu]->BooleanSubtract( *m_frontPlatedCopperPolys, SHAPE_POLY_SET::PM_FAST );
|
||||
m_layers_poly[F_Cu]->BooleanSubtract( *m_frontPlatedPadAndGraphicPolys );
|
||||
m_layers_poly[F_Cu]->BooleanSubtract( *m_frontPlatedCopperPolys );
|
||||
hasF_Cu = true;
|
||||
}
|
||||
|
||||
if( m_layers_poly.find( B_Cu ) != m_layers_poly.end() )
|
||||
{
|
||||
m_layers_poly[B_Cu]->BooleanSubtract( *m_backPlatedPadAndGraphicPolys, SHAPE_POLY_SET::PM_FAST );
|
||||
m_layers_poly[B_Cu]->BooleanSubtract( *m_backPlatedCopperPolys, SHAPE_POLY_SET::PM_FAST );
|
||||
m_layers_poly[B_Cu]->BooleanSubtract( *m_backPlatedPadAndGraphicPolys );
|
||||
m_layers_poly[B_Cu]->BooleanSubtract( *m_backPlatedCopperPolys );
|
||||
hasB_Cu = true;
|
||||
}
|
||||
|
||||
@ -1096,10 +1094,10 @@ void BOARD_ADAPTER::createLayers( REPORTER* aStatusReporter )
|
||||
if( hasB_Cu && m_backPlatedCopperPolys->OutlineCount() )
|
||||
m_backPlatedPadAndGraphicPolys->Append( *m_backPlatedCopperPolys );
|
||||
|
||||
m_frontPlatedPadAndGraphicPolys->Simplify( SHAPE_POLY_SET::PM_FAST );
|
||||
m_backPlatedPadAndGraphicPolys->Simplify( SHAPE_POLY_SET::PM_FAST );
|
||||
m_frontPlatedCopperPolys->Simplify( SHAPE_POLY_SET::PM_FAST );
|
||||
m_backPlatedCopperPolys->Simplify( SHAPE_POLY_SET::PM_FAST );
|
||||
m_frontPlatedPadAndGraphicPolys->Simplify();
|
||||
m_backPlatedPadAndGraphicPolys->Simplify();
|
||||
m_frontPlatedCopperPolys->Simplify();
|
||||
m_backPlatedCopperPolys->Simplify();
|
||||
|
||||
// ADD PLATED PADS
|
||||
for( FOOTPRINT* footprint : m_board->Footprints() )
|
||||
@ -1168,7 +1166,7 @@ void BOARD_ADAPTER::createLayers( REPORTER* aStatusReporter )
|
||||
{
|
||||
// This will make a union of all added contours
|
||||
layerPoly->second->ClearArcs();
|
||||
layerPoly->second->Simplify( SHAPE_POLY_SET::PM_FAST );
|
||||
layerPoly->second->Simplify();
|
||||
}
|
||||
}
|
||||
|
||||
@ -1193,12 +1191,12 @@ void BOARD_ADAPTER::createLayers( REPORTER* aStatusReporter )
|
||||
{
|
||||
// found
|
||||
SHAPE_POLY_SET *polyLayer = m_layerHoleOdPolys[layer];
|
||||
polyLayer->Simplify( SHAPE_POLY_SET::PM_FAST );
|
||||
polyLayer->Simplify();
|
||||
|
||||
wxASSERT( m_layerHoleIdPolys.find( layer ) != m_layerHoleIdPolys.end() );
|
||||
|
||||
polyLayer = m_layerHoleIdPolys[layer];
|
||||
polyLayer->Simplify( SHAPE_POLY_SET::PM_FAST );
|
||||
polyLayer->Simplify();
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -476,13 +476,12 @@ void RENDER_3D_OPENGL::reload( REPORTER* aStatusReporter, REPORTER* aWarningRepo
|
||||
m_antiBoardPolys.Append( VECTOR2I( -INT_MAX/2, INT_MAX/2 ) );
|
||||
m_antiBoardPolys.Outline( 0 ).SetClosed( true );
|
||||
|
||||
m_antiBoardPolys.BooleanSubtract( m_boardAdapter.GetBoardPoly(),
|
||||
SHAPE_POLY_SET::PM_STRICTLY_SIMPLE );
|
||||
m_antiBoardPolys.BooleanSubtract( m_boardAdapter.GetBoardPoly() );
|
||||
m_antiBoard = createBoard( m_antiBoardPolys );
|
||||
|
||||
SHAPE_POLY_SET board_poly_with_holes = m_boardAdapter.GetBoardPoly().CloneDropTriangulation();
|
||||
board_poly_with_holes.BooleanSubtract( m_boardAdapter.GetTH_ODPolys(), SHAPE_POLY_SET::PM_FAST );
|
||||
board_poly_with_holes.BooleanSubtract( m_boardAdapter.GetNPTH_ODPolys(), SHAPE_POLY_SET::PM_FAST );
|
||||
board_poly_with_holes.BooleanSubtract( m_boardAdapter.GetTH_ODPolys() );
|
||||
board_poly_with_holes.BooleanSubtract( m_boardAdapter.GetNPTH_ODPolys() );
|
||||
|
||||
m_boardWithHoles = createBoard( board_poly_with_holes );
|
||||
|
||||
@ -495,8 +494,7 @@ void RENDER_3D_OPENGL::reload( REPORTER* aStatusReporter, REPORTER* aWarningRepo
|
||||
|
||||
SHAPE_POLY_SET outerPolyTHT = m_boardAdapter.GetTH_ODPolys().CloneDropTriangulation();
|
||||
|
||||
outerPolyTHT.BooleanIntersection( m_boardAdapter.GetBoardPoly(),
|
||||
SHAPE_POLY_SET::PM_STRICTLY_SIMPLE );
|
||||
outerPolyTHT.BooleanIntersection( m_boardAdapter.GetBoardPoly() );
|
||||
|
||||
m_outerThroughHoles = generateHoles( m_boardAdapter.GetTH_ODs().GetList(), outerPolyTHT,
|
||||
1.0f, 0.0f, false, &m_boardAdapter.GetTH_IDs() );
|
||||
@ -575,29 +573,24 @@ void RENDER_3D_OPENGL::reload( REPORTER* aStatusReporter, REPORTER* aWarningRepo
|
||||
|
||||
if( LSET::PhysicalLayersMask().test( layer ) )
|
||||
{
|
||||
polyListSubtracted.BooleanIntersection( m_boardAdapter.GetBoardPoly(),
|
||||
SHAPE_POLY_SET::PM_FAST );
|
||||
polyListSubtracted.BooleanIntersection( m_boardAdapter.GetBoardPoly() );
|
||||
}
|
||||
|
||||
if( layer != B_Mask && layer != F_Mask )
|
||||
{
|
||||
polyListSubtracted.BooleanSubtract( m_boardAdapter.GetTH_ODPolys(),
|
||||
SHAPE_POLY_SET::PM_FAST );
|
||||
polyListSubtracted.BooleanSubtract( m_boardAdapter.GetNPTH_ODPolys(),
|
||||
SHAPE_POLY_SET::PM_FAST );
|
||||
polyListSubtracted.BooleanSubtract( m_boardAdapter.GetTH_ODPolys() );
|
||||
polyListSubtracted.BooleanSubtract( m_boardAdapter.GetNPTH_ODPolys() );
|
||||
}
|
||||
|
||||
if( m_boardAdapter.m_Cfg->m_Render.subtract_mask_from_silk )
|
||||
{
|
||||
if( layer == B_SilkS && map_poly.find( B_Mask ) != map_poly.end() )
|
||||
{
|
||||
polyListSubtracted.BooleanSubtract( *map_poly.at( B_Mask ),
|
||||
SHAPE_POLY_SET::PM_FAST );
|
||||
polyListSubtracted.BooleanSubtract( *map_poly.at( B_Mask ) );
|
||||
}
|
||||
else if( layer == F_SilkS && map_poly.find( F_Mask ) != map_poly.end() )
|
||||
{
|
||||
polyListSubtracted.BooleanSubtract( *map_poly.at( F_Mask ),
|
||||
SHAPE_POLY_SET::PM_FAST );
|
||||
polyListSubtracted.BooleanSubtract( *map_poly.at( F_Mask ) );
|
||||
}
|
||||
}
|
||||
|
||||
@ -620,9 +613,9 @@ void RENDER_3D_OPENGL::reload( REPORTER* aStatusReporter, REPORTER* aWarningRepo
|
||||
if( frontPlatedPadAndGraphicPolys )
|
||||
{
|
||||
SHAPE_POLY_SET poly = frontPlatedPadAndGraphicPolys->CloneDropTriangulation();
|
||||
poly.BooleanIntersection( m_boardAdapter.GetBoardPoly(), SHAPE_POLY_SET::PM_FAST );
|
||||
poly.BooleanSubtract( m_boardAdapter.GetTH_ODPolys(), SHAPE_POLY_SET::PM_FAST );
|
||||
poly.BooleanSubtract( m_boardAdapter.GetNPTH_ODPolys(), SHAPE_POLY_SET::PM_FAST );
|
||||
poly.BooleanIntersection( m_boardAdapter.GetBoardPoly() );
|
||||
poly.BooleanSubtract( m_boardAdapter.GetTH_ODPolys() );
|
||||
poly.BooleanSubtract( m_boardAdapter.GetNPTH_ODPolys() );
|
||||
|
||||
m_platedPadsFront = generateLayerList( m_boardAdapter.GetPlatedPadsFront(), &poly, F_Cu );
|
||||
|
||||
@ -634,9 +627,9 @@ void RENDER_3D_OPENGL::reload( REPORTER* aStatusReporter, REPORTER* aWarningRepo
|
||||
if( backPlatedPadAndGraphicPolys )
|
||||
{
|
||||
SHAPE_POLY_SET poly = backPlatedPadAndGraphicPolys->CloneDropTriangulation();
|
||||
poly.BooleanIntersection( m_boardAdapter.GetBoardPoly(), SHAPE_POLY_SET::PM_FAST );
|
||||
poly.BooleanSubtract( m_boardAdapter.GetTH_ODPolys(), SHAPE_POLY_SET::PM_FAST );
|
||||
poly.BooleanSubtract( m_boardAdapter.GetNPTH_ODPolys(), SHAPE_POLY_SET::PM_FAST );
|
||||
poly.BooleanIntersection( m_boardAdapter.GetBoardPoly() );
|
||||
poly.BooleanSubtract( m_boardAdapter.GetTH_ODPolys() );
|
||||
poly.BooleanSubtract( m_boardAdapter.GetNPTH_ODPolys() );
|
||||
|
||||
m_platedPadsBack = generateLayerList( m_boardAdapter.GetPlatedPadsBack(), &poly, B_Cu );
|
||||
|
||||
@ -839,9 +832,9 @@ void RENDER_3D_OPENGL::generateViasAndPads()
|
||||
}
|
||||
|
||||
// Subtract the holes
|
||||
tht_outer_holes_poly.BooleanSubtract( tht_inner_holes_poly, SHAPE_POLY_SET::PM_FAST );
|
||||
tht_outer_holes_poly.BooleanSubtract( tht_inner_holes_poly );
|
||||
|
||||
tht_outer_holes_poly.BooleanSubtract( m_antiBoardPolys, SHAPE_POLY_SET::PM_FAST );
|
||||
tht_outer_holes_poly.BooleanSubtract( m_antiBoardPolys );
|
||||
|
||||
CONTAINER_2D holesContainer;
|
||||
|
||||
|
@ -415,8 +415,8 @@ void RENDER_3D_RAYTRACE_BASE::Reload( REPORTER* aStatusReporter, REPORTER* aWarn
|
||||
|
||||
buildBoardBoundingBoxPoly( m_boardAdapter.GetBoard(), antiboardPoly );
|
||||
|
||||
antiboardPoly.BooleanSubtract( boardPolyCopy, SHAPE_POLY_SET::PM_FAST );
|
||||
antiboardPoly.Fracture( SHAPE_POLY_SET::PM_FAST );
|
||||
antiboardPoly.BooleanSubtract( boardPolyCopy );
|
||||
antiboardPoly.Fracture();
|
||||
|
||||
for( int ii = 0; ii < antiboardPoly.OutlineCount(); ii++ )
|
||||
{
|
||||
@ -427,7 +427,7 @@ void RENDER_3D_RAYTRACE_BASE::Reload( REPORTER* aStatusReporter, REPORTER* aWarn
|
||||
|
||||
m_antioutlineBoard2dObjects->BuildBVH();
|
||||
|
||||
boardPolyCopy.Fracture( SHAPE_POLY_SET::PM_FAST );
|
||||
boardPolyCopy.Fracture();
|
||||
|
||||
for( int ii = 0; ii < outlineCount; ii++ )
|
||||
{
|
||||
|
@ -612,10 +612,9 @@ void ConvertPolygonToBlocks( const SHAPE_POLY_SET& aMainPath, CONTAINER_2D_BASE&
|
||||
|
||||
subBlockPoly.AddOutline( sb );
|
||||
|
||||
// We need here a strictly simple polygon with outlines and holes
|
||||
// We need here a simple polygon with outlines and holes
|
||||
SHAPE_POLY_SET solution;
|
||||
solution.BooleanIntersection( aMainPath, subBlockPoly,
|
||||
SHAPE_POLY_SET::PM_STRICTLY_SIMPLE );
|
||||
solution.BooleanIntersection( aMainPath, subBlockPoly );
|
||||
|
||||
OUTERS_AND_HOLES outersAndHoles;
|
||||
|
||||
@ -659,68 +658,3 @@ void ConvertPolygonToBlocks( const SHAPE_POLY_SET& aMainPath, CONTAINER_2D_BASE&
|
||||
topToBottom += topToBottom_inc;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
#ifdef DEBUG
|
||||
static void polygon_Convert( const ClipperLib::Path& aPath, SEGMENTS& aOutSegment,
|
||||
float aBiuTo3dUnitsScale )
|
||||
{
|
||||
aOutSegment.resize( aPath.size() );
|
||||
|
||||
for( unsigned i = 0; i < aPath.size(); i++ )
|
||||
{
|
||||
aOutSegment[i].m_Start = SFVEC2F(
|
||||
(float) aPath[i].X * aBiuTo3dUnitsScale, (float) -aPath[i].Y * aBiuTo3dUnitsScale );
|
||||
}
|
||||
|
||||
unsigned int i;
|
||||
unsigned int j = aOutSegment.size() - 1;
|
||||
|
||||
for( i = 0; i < aOutSegment.size(); j = i++ )
|
||||
{
|
||||
// Calculate constants for each segment
|
||||
aOutSegment[i].m_inv_JY_minus_IY =
|
||||
1.0f / ( aOutSegment[j].m_Start.y - aOutSegment[i].m_Start.y );
|
||||
aOutSegment[i].m_JX_minus_IX = ( aOutSegment[j].m_Start.x - aOutSegment[i].m_Start.x );
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
void Polygon2d_TestModule()
|
||||
{
|
||||
// "This structure contains a sequence of IntPoint vertices defining a single contour"
|
||||
ClipperLib::Path aPath;
|
||||
|
||||
SEGMENTS aSegments;
|
||||
|
||||
aPath.resize( 4 );
|
||||
|
||||
aPath[0] = ClipperLib::IntPoint( -2, -2 );
|
||||
aPath[1] = ClipperLib::IntPoint( 2, -2 );
|
||||
aPath[2] = ClipperLib::IntPoint( 2, 2 );
|
||||
aPath[3] = ClipperLib::IntPoint( -2, 2 );
|
||||
|
||||
// It must be an outer polygon
|
||||
wxASSERT( ClipperLib::Orientation( aPath ) );
|
||||
|
||||
polygon_Convert( aPath, aSegments, 1.0f );
|
||||
|
||||
wxASSERT( aPath.size() == aSegments.size() );
|
||||
|
||||
wxASSERT( aSegments[0].m_Start == SFVEC2F( -2.0f, 2.0f ) );
|
||||
wxASSERT( aSegments[1].m_Start == SFVEC2F( 2.0f, 2.0f ) );
|
||||
wxASSERT( aSegments[2].m_Start == SFVEC2F( 2.0f, -2.0f ) );
|
||||
wxASSERT( aSegments[3].m_Start == SFVEC2F( -2.0f, -2.0f ) );
|
||||
|
||||
wxASSERT( polygon_IsPointInside( aSegments, SFVEC2F( 0.0f, 0.0f ) ) );
|
||||
wxASSERT( polygon_IsPointInside( aSegments, SFVEC2F( -1.9f, -1.9f ) ) );
|
||||
wxASSERT( polygon_IsPointInside( aSegments, SFVEC2F( -1.9f, 1.9f ) ) );
|
||||
wxASSERT( polygon_IsPointInside( aSegments, SFVEC2F( 1.9f, 1.9f ) ) );
|
||||
wxASSERT( polygon_IsPointInside( aSegments, SFVEC2F( 1.9f, -1.9f ) ) );
|
||||
|
||||
wxASSERT( polygon_IsPointInside( aSegments, SFVEC2F( -2.1f, -2.0f ) ) == false );
|
||||
wxASSERT( polygon_IsPointInside( aSegments, SFVEC2F( -2.1f, 2.0f ) ) == false );
|
||||
wxASSERT( polygon_IsPointInside( aSegments, SFVEC2F( 2.1f, 2.0f ) ) == false );
|
||||
wxASSERT( polygon_IsPointInside( aSegments, SFVEC2F( 2.1f, -2.0f ) ) == false );
|
||||
}
|
||||
#endif
|
||||
|
@ -152,6 +152,5 @@ void ConvertPolygonToBlocks( const SHAPE_POLY_SET& aMainPath, CONTAINER_2D_BASE&
|
||||
float aBiuTo3dUnitsScale, float aDivFactor,
|
||||
const BOARD_ITEM& aBoardItem, int aPolyIndex );
|
||||
|
||||
void Polygon2d_TestModule();
|
||||
|
||||
#endif // _CPOLYGON2D_H_
|
||||
|
@ -33,7 +33,6 @@
|
||||
#include "../accelerators/container_2d.h"
|
||||
#include <geometry/shape_line_chain.h>
|
||||
#include <geometry/shape_poly_set.h>
|
||||
#include <clipper.hpp>
|
||||
|
||||
class TRIANGLE_2D : public OBJECT_2D
|
||||
{
|
||||
|
@ -524,15 +524,15 @@ void BITMAPCONV_INFO::createOutputData( BMP2CMP_MOD_LAYER aModLayer )
|
||||
// at the end of a group of a positive path and its negative children, fill.
|
||||
if( paths->next == nullptr || paths->next->sign == '+' )
|
||||
{
|
||||
polyset_areas.Simplify( SHAPE_POLY_SET::PM_STRICTLY_SIMPLE );
|
||||
polyset_holes.Simplify( SHAPE_POLY_SET::PM_STRICTLY_SIMPLE );
|
||||
polyset_areas.BooleanSubtract( polyset_holes, SHAPE_POLY_SET::PM_STRICTLY_SIMPLE );
|
||||
polyset_areas.Simplify();
|
||||
polyset_holes.Simplify();
|
||||
polyset_areas.BooleanSubtract( polyset_holes );
|
||||
|
||||
// Ensure there are no self intersecting polygons
|
||||
if( polyset_areas.NormalizeAreaOutlines() )
|
||||
{
|
||||
// Convert polygon with holes to a unique polygon
|
||||
polyset_areas.Fracture( SHAPE_POLY_SET::PM_STRICTLY_SIMPLE );
|
||||
polyset_areas.Fracture();
|
||||
|
||||
// Output current resulting polygon(s)
|
||||
for( int ii = 0; ii < polyset_areas.OutlineCount(); ii++ )
|
||||
|
@ -98,7 +98,6 @@ static const wxChar AllowManualCanvasScale[] = wxT( "AllowManualCanvasScale" );
|
||||
static const wxChar UpdateUIEventInterval[] = wxT( "UpdateUIEventInterval" );
|
||||
static const wxChar V3DRT_BevelHeight_um[] = wxT( "V3DRT_BevelHeight_um" );
|
||||
static const wxChar V3DRT_BevelExtentFactor[] = wxT( "V3DRT_BevelExtentFactor" );
|
||||
static const wxChar UseClipper2[] = wxT( "UseClipper2" );
|
||||
static const wxChar EnableDesignBlocks[] = wxT( "EnableDesignBlocks" );
|
||||
static const wxChar EnableGenerators[] = wxT( "EnableGenerators" );
|
||||
static const wxChar EnableGit[] = wxT( "EnableGit" );
|
||||
@ -263,7 +262,6 @@ ADVANCED_CFG::ADVANCED_CFG()
|
||||
m_3DRT_BevelHeight_um = 30;
|
||||
m_3DRT_BevelExtentFactor = 1.0 / 16.0;
|
||||
|
||||
m_UseClipper2 = true;
|
||||
m_EnableAPILogging = false;
|
||||
|
||||
m_Use3DConnexionDriver = true;
|
||||
@ -464,9 +462,6 @@ void ADVANCED_CFG::loadSettings( wxConfigBase& aCfg )
|
||||
m_3DRT_BevelExtentFactor, 0.0, 100.0,
|
||||
AC_GROUPS::V3D_RayTracing ) );
|
||||
|
||||
configParams.push_back( new PARAM_CFG_BOOL( true, AC_KEYS::UseClipper2,
|
||||
&m_UseClipper2, m_UseClipper2 ) );
|
||||
|
||||
configParams.push_back( new PARAM_CFG_BOOL( true, AC_KEYS::Use3DConnexionDriver,
|
||||
&m_Use3DConnexionDriver, m_Use3DConnexionDriver ) );
|
||||
|
||||
|
@ -71,7 +71,7 @@ void CALLBACK_GAL::DrawGlyph( const KIFONT::GLYPH& aGlyph, int aNth, int aTotal
|
||||
KIFONT::OUTLINE_GLYPH glyph = static_cast<const KIFONT::OUTLINE_GLYPH&>( aGlyph );
|
||||
|
||||
if( glyph.HasHoles() )
|
||||
glyph.Fracture( SHAPE_POLY_SET::POLYGON_MODE::PM_FAST );
|
||||
glyph.Fracture();
|
||||
|
||||
for( int ii = 0; ii < glyph.OutlineCount(); ++ii )
|
||||
m_outlineCallback( glyph.Outline( ii ) );
|
||||
|
@ -1022,9 +1022,9 @@ void EDA_DRAW_FRAME::FocusOnLocation( const VECTOR2I& aPos )
|
||||
{
|
||||
GetCanvas()->GetView()->SetCenter( aPos, dialogScreenRects );
|
||||
}
|
||||
catch( const ClipperLib::clipperException& e )
|
||||
catch( const Clipper2Lib::Clipper2Exception& e )
|
||||
{
|
||||
wxFAIL_MSG( wxString::Format( wxT( "Clipper exception occurred centering object: %s" ),
|
||||
wxFAIL_MSG( wxString::Format( wxT( "Clipper2 exception occurred centering object: %s" ),
|
||||
e.what() ) );
|
||||
}
|
||||
}
|
||||
|
@ -250,9 +250,9 @@ static void convertPolygon( std::list<std::unique_ptr<IMPORTED_SHAPE>>& aShapes,
|
||||
upscaledPaths.push_back( lc );
|
||||
}
|
||||
|
||||
SHAPE_POLY_SET result = SHAPE_POLY_SET::BuildPolysetFromOrientedPaths(
|
||||
upscaledPaths, false, aFillRule == GRAPHICS_IMPORTER::PF_EVEN_ODD );
|
||||
result.Fracture( SHAPE_POLY_SET::PM_STRICTLY_SIMPLE );
|
||||
SHAPE_POLY_SET result;
|
||||
result.BuildPolysetFromOrientedPaths( upscaledPaths, aFillRule == GRAPHICS_IMPORTER::PF_EVEN_ODD );
|
||||
result.Fracture();
|
||||
|
||||
for( int outl = 0; outl < result.OutlineCount(); outl++ )
|
||||
{
|
||||
|
@ -574,8 +574,8 @@ void DXF_PLOTTER::PlotPoly( const std::vector<VECTOR2I>& aCornerList, FILL_T aFi
|
||||
// polygon and its thick outline
|
||||
|
||||
// create the outline which contains thick outline:
|
||||
bufferPolybase.BooleanAdd( bufferOutline, SHAPE_POLY_SET::PM_FAST );
|
||||
bufferPolybase.Fracture( SHAPE_POLY_SET::PM_FAST );
|
||||
bufferPolybase.BooleanAdd( bufferOutline );
|
||||
bufferPolybase.Fracture();
|
||||
|
||||
if( bufferPolybase.OutlineCount() < 1 ) // should not happen
|
||||
return;
|
||||
|
@ -622,7 +622,7 @@ void VIEW::SetCenter( const VECTOR2D& aCenter, const std::vector<BOX2D>& obscuri
|
||||
for( const BOX2D& obscuringScreenRect : obscuringScreenRects )
|
||||
{
|
||||
SHAPE_POLY_SET obscuringPoly( obscuringScreenRect );
|
||||
unobscuredPoly.BooleanSubtract( obscuringPoly, SHAPE_POLY_SET::PM_FAST );
|
||||
unobscuredPoly.BooleanSubtract( obscuringPoly );
|
||||
}
|
||||
|
||||
/*
|
||||
|
@ -91,7 +91,7 @@ std::unordered_map<uint32_t, SHAPE_POLY_SET> ConvertImageToPolygons( wxImage im
|
||||
|
||||
for( auto& [color, polySet] : colorPolys )
|
||||
{
|
||||
polySet.Simplify( SHAPE_POLY_SET::PM_STRICTLY_SIMPLE );
|
||||
polySet.Simplify();
|
||||
|
||||
for( int i = 0; i < polySet.OutlineCount(); i++ )
|
||||
{
|
||||
@ -114,7 +114,7 @@ void ConvertImageToLibShapes( LIB_SYMBOL* aSymbol, int unit, wxImage img, VECTOR
|
||||
|
||||
for( auto& [color, polySet] : colorPolys )
|
||||
{
|
||||
polySet.Fracture( SHAPE_POLY_SET::PM_STRICTLY_SIMPLE );
|
||||
polySet.Fracture();
|
||||
|
||||
for( const SHAPE_POLY_SET::POLYGON& poly : polySet.CPolygons() )
|
||||
{
|
||||
|
@ -664,8 +664,8 @@ static void knockoutText( KIGFX::GAL& aGal, const wxString& aText, const VECTOR2
|
||||
finalPoly.Append( bbox.GetRight(), bbox.GetBottom() );
|
||||
finalPoly.Append( bbox.GetLeft(), bbox.GetBottom() );
|
||||
|
||||
finalPoly.BooleanSubtract( knockouts, SHAPE_POLY_SET::PM_FAST );
|
||||
finalPoly.Fracture( SHAPE_POLY_SET::PM_FAST );
|
||||
finalPoly.BooleanSubtract( knockouts );
|
||||
finalPoly.Fracture();
|
||||
|
||||
aGal.SetIsStroke( false );
|
||||
aGal.SetIsFill( true );
|
||||
|
@ -124,19 +124,19 @@ SHAPE_POLY_SET* APERTURE_MACRO::GetApertureMacroShape( const GERBER_DRAW_ITEM* a
|
||||
|
||||
if( holeBuffer.OutlineCount() ) // we have a new hole in shape: remove the hole
|
||||
{
|
||||
m_shape.BooleanSubtract( holeBuffer, SHAPE_POLY_SET::PM_FAST );
|
||||
m_shape.BooleanSubtract( holeBuffer );
|
||||
holeBuffer.RemoveAllContours();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Merge and cleanup basic shape polygons
|
||||
m_shape.Simplify( SHAPE_POLY_SET::PM_FAST );
|
||||
m_shape.Simplify();
|
||||
|
||||
// A hole can be is defined inside a polygon, or the polygons themselve can create
|
||||
// a hole when merged, so we must fracture the polygon to be able to drawn it
|
||||
// (i.e link holes by overlapping edges)
|
||||
m_shape.Fracture( SHAPE_POLY_SET::PM_FAST );
|
||||
m_shape.Fracture();
|
||||
|
||||
// Move m_shape to the actual draw position:
|
||||
for( int icnt = 0; icnt < m_shape.OutlineCount(); icnt++ )
|
||||
|
@ -448,6 +448,6 @@ static void addHoleToPolygon( SHAPE_POLY_SET* aPolygon, APERTURE_DEF_HOLETYPE aH
|
||||
holeBuffer.Append( VECTOR2I( currpos ) ); // close hole
|
||||
}
|
||||
|
||||
aPolygon->BooleanSubtract( holeBuffer, SHAPE_POLY_SET::PM_FAST );
|
||||
aPolygon->Fracture( SHAPE_POLY_SET::PM_FAST );
|
||||
aPolygon->BooleanSubtract( holeBuffer );
|
||||
aPolygon->Fracture();
|
||||
}
|
||||
|
@ -574,7 +574,7 @@ void GBR_TO_PCB_EXPORTER::writePcbPolygon( const SHAPE_POLY_SET& aPolys, int aLa
|
||||
void GBR_TO_PCB_EXPORTER::writePcbZoneItem( const GERBER_DRAW_ITEM* aGbrItem, int aLayer )
|
||||
{
|
||||
SHAPE_POLY_SET polys = aGbrItem->m_ShapeAsPolygon.CloneDropTriangulation();
|
||||
polys.Simplify( SHAPE_POLY_SET::PM_FAST );
|
||||
polys.Simplify();
|
||||
|
||||
if( polys.OutlineCount() == 0 )
|
||||
return;
|
||||
|
@ -428,15 +428,6 @@ public:
|
||||
*/
|
||||
double m_3DRT_BevelExtentFactor;
|
||||
|
||||
/**
|
||||
* Use Clipper2 instead of Clipper1.
|
||||
*
|
||||
* Setting name: "UseClipper2"
|
||||
* Valid values: 0 or 1
|
||||
* Default value: 1
|
||||
*/
|
||||
bool m_UseClipper2;
|
||||
|
||||
/**
|
||||
* Use the 3DConnexion Driver.
|
||||
*
|
||||
|
@ -299,7 +299,7 @@ public:
|
||||
{
|
||||
if( m_poly.HoleCount( ii ) )
|
||||
{
|
||||
m_poly.Fracture( SHAPE_POLY_SET::PM_FAST );
|
||||
m_poly.Fracture();
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
@ -51,7 +51,6 @@ add_library( kimath STATIC
|
||||
|
||||
target_link_libraries( kimath
|
||||
core
|
||||
clipper
|
||||
clipper2
|
||||
othermath
|
||||
rtree
|
||||
|
@ -51,7 +51,6 @@
|
||||
#include <cmath>
|
||||
|
||||
#include <advanced_config.h>
|
||||
#include <clipper.hpp>
|
||||
#include <geometry/shape_line_chain.h>
|
||||
#include <geometry/shape_poly_set.h>
|
||||
#include <geometry/vertex_set.h>
|
||||
|
@ -27,7 +27,6 @@
|
||||
#define __SHAPE_LINE_CHAIN
|
||||
|
||||
|
||||
#include <clipper.hpp>
|
||||
#include <clipper2/clipper.h>
|
||||
#include <geometry/seg.h>
|
||||
#include <geometry/shape.h>
|
||||
@ -37,7 +36,7 @@
|
||||
|
||||
/**
|
||||
* Holds information on each point of a SHAPE_LINE_CHAIN that is retrievable
|
||||
* after an operation with ClipperLib
|
||||
* after an operation with Clipper2Lib
|
||||
*/
|
||||
struct CLIPPER_Z_VALUE
|
||||
{
|
||||
@ -176,10 +175,6 @@ public:
|
||||
|
||||
SHAPE_LINE_CHAIN( const SHAPE_ARC& aArc, bool aClosed = false );
|
||||
|
||||
SHAPE_LINE_CHAIN( const ClipperLib::Path& aPath,
|
||||
const std::vector<CLIPPER_Z_VALUE>& aZValueBuffer,
|
||||
const std::vector<SHAPE_ARC>& aArcBuffer );
|
||||
|
||||
SHAPE_LINE_CHAIN( const Clipper2Lib::Path64& aPath,
|
||||
const std::vector<CLIPPER_Z_VALUE>& aZValueBuffer,
|
||||
const std::vector<SHAPE_ARC>& aArcBuffer );
|
||||
@ -920,13 +915,6 @@ protected:
|
||||
return m_shapes[aSegment].second;
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a new Clipper path from the SHAPE_LINE_CHAIN in a given orientation
|
||||
*/
|
||||
ClipperLib::Path convertToClipper( bool aRequiredOrientation,
|
||||
std::vector<CLIPPER_Z_VALUE>& aZValueBuffer,
|
||||
std::vector<SHAPE_ARC>& aArcBuffer ) const;
|
||||
|
||||
/**
|
||||
* Create a new Clipper2 path from the SHAPE_LINE_CHAIN in a given orientation
|
||||
*/
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user