22#include <unordered_set>
44#include <nanoflann.hpp>
84 return ( aLeft - aRight ).SquaredEuclideanNorm() <=
SEG::Square( aLimit );
98 return ( aRef - aFirst ).SquaredEuclideanNorm() < ( aRef - aSecond ).SquaredEuclideanNorm();
110 return std::min( ( aPt - aSecond->
GetStart() ).SquaredEuclideanNorm(),
111 ( aPt - aSecond->
GetEnd() ).SquaredEuclideanNorm() );
121 bool padOutside =
false;
125 pad->Padstack().ForEachUniqueLayer(
138 padPos.
x, padPos.
y );
148 padPos.
x, padPos.
y );
165 endpoints.emplace_back( shape->GetStart(), shape );
166 endpoints.emplace_back( shape->GetEnd(), shape );
177 return static_cast<double>(
endpoints[idx].first.x );
179 return static_cast<double>(
endpoints[idx].first.y );
182 template <
class BBOX>
189using KDTree = nanoflann::KDTreeSingleIndexAdaptor<nanoflann::L2_Simple_Adaptor<double, PCB_SHAPE_ENDPOINTS_ADAPTOR>,
194 std::map<std::pair<VECTOR2I, VECTOR2I>,
PCB_SHAPE*>& aShapeOwners,
195 int aErrorMax,
bool aAllowUseArcsInPolygons )
212 aShapeOwners[ std::make_pair( prevPt, pt ) ] = aShape;
228 aContour.
Append( arc360, aErrorMax );
231 for(
int ii = 1; ii < aContour.
PointCount(); ++ii )
232 aShapeOwners[ std::make_pair( aContour.
CPoint( ii-1 ), aContour.
CPoint( ii ) ) ] = aShape;
234 if( !aAllowUseArcsInPolygons )
249 for(
int ii = 1; ii < aContour.
PointCount(); ++ii )
250 aShapeOwners[ std::make_pair( aContour.
CPoint( ii - 1 ), aContour.
CPoint( ii ) ) ] = aShape;
252 if( !aAllowUseArcsInPolygons )
270 aShapeOwners[ std::make_pair( prevPt, pt ) ] = aShape;
286 for(
int ii = 0; ii <
chain.PointCount(); ++ii )
291 for(
int ii = 1; ii < aContour.
PointCount(); ++ii )
292 aShapeOwners[std::make_pair( aContour.
CPoint( ii - 1 ), aContour.
CPoint( ii ) )] = aShape;
302 std::map<std::pair<VECTOR2I, VECTOR2I>,
PCB_SHAPE*>& aShapeOwners,
303 int aErrorMax,
int aChainingEpsilon,
bool aAllowUseArcsInPolygons )
312 nextPt = aShape->
GetEnd();
316 aContour.
Append( nextPt );
317 aShapeOwners[ std::make_pair( aPrevPt, nextPt ) ] = aShape;
334 std::swap( pstart, pend );
339 arcChain.
Append( sarc, aErrorMax );
341 if( !aAllowUseArcsInPolygons )
344 for(
int ii = 1; ii < arcChain.
PointCount(); ++ii )
346 aShapeOwners[ std::make_pair( arcChain.
CPoint( ii - 1 ),
347 arcChain.
CPoint( ii ) ) ] = aShape;
350 aContour.
Append( arcChain );
357 bool reverse =
false;
361 nextPt = aShape->
GetEnd();
381 aShapeOwners[ std::make_pair( aPrevPt, pt ) ] = aShape;
393 aShapeOwners[ std::make_pair( aPrevPt, pt ) ] = aShape;
405 bool reverse =
false;
417 std::swap( pstart, pend );
428 for(
int ii = 0; ii < arcChain.
PointCount(); ++ii )
436 aShapeOwners[std::make_pair( aPrevPt, pt )] = aShape;
450 std::map<int, std::vector<int>> contourToParentIndexesMap;
452 for(
size_t ii = 0; ii < aContours.size(); ++ii )
454 if( aContours[ii].PointCount() < 1 )
457 VECTOR2I firstPt = aContours[ii].GetPoint( 0 );
458 std::vector<int> parents;
460 for(
size_t jj = 0; jj < aContours.size(); ++jj )
467 if( parentCandidate.
PointInside( firstPt, 0,
true ) )
468 parents.push_back( jj );
471 contourToParentIndexesMap[ii] = std::move( parents );
474 return contourToParentIndexesMap;
478 const std::map<
int, std::vector<int>>& aContourHierarchy,
479 const std::set<int>& aCrossingContours,
SHAPE_POLY_SET& aPolygons,
481 const std::function<
PCB_SHAPE*(
const SEG& )>& aFetchOwner,
482 std::map<int, int>& aContourToOutlineIdxMap )
484 for(
const auto& [ contourIndex, parentIndexes ] : aContourHierarchy )
486 if( parentIndexes.size() % 2 == 0 )
489 if( !parentIndexes.empty() && aCrossingContours.count( contourIndex ) )
493 if( !aAllowDisjoint && !aPolygons.
IsEmpty() )
498 BOARD_ITEM* b = aFetchOwner( aContours[ contourIndex ].GetSegment( 0 ) );
502 (*aErrorHandler)(
_(
"(multiple board outlines not supported)" ), a, b,
503 aContours[ contourIndex ].GetPoint( 0 ) );
509 aPolygons.
AddOutline( aContours[ contourIndex ] );
510 aContourToOutlineIdxMap[ contourIndex ] = aPolygons.
OutlineCount() - 1;
517 const std::map<
int, std::vector<int>>& aContourHierarchy,
518 const std::map<int, int>& aContourToOutlineIdxMap,
SHAPE_POLY_SET& aPolygons,
519 bool aAllowUseArcsInPolygons,
const std::set<int>& aCrossingContours )
521 if( aAllowUseArcsInPolygons || aCrossingContours.empty() )
523 for(
const auto& [contourIndex, parentIndexes] : aContourHierarchy )
525 if( parentIndexes.size() % 2 == 1 )
530 for(
int parentContourIdx : parentIndexes )
532 if( aContourHierarchy.at( parentContourIdx ).size() == parentIndexes.size() - 1 )
534 int outlineIdx = aContourToOutlineIdxMap.at( parentContourIdx );
535 aPolygons.
AddHole( hole, outlineIdx );
549 for(
const auto& [contourIndex, parentIndexes] : aContourHierarchy )
551 if( parentIndexes.empty() )
554 if( parentIndexes.size() % 2 == 1 || aCrossingContours.count( contourIndex ) )
555 cutoutCandidates.
AddOutline( aContours[contourIndex] );
557 islandCandidates.
AddOutline( aContours[contourIndex] );
575 const std::function<
PCB_SHAPE*(
const SEG&)>& aFetchOwner )
577 bool selfIntersecting =
false;
578 std::vector<SEG> segments;
586 for(
int jj = 0; jj < aPolygons.
HoleCount( ii ); ++jj )
593 segments.reserve( total );
600 std::swap( segment.
A, segment.
B );
602 segments.push_back( segment );
605 std::sort( segments.begin(), segments.end(),
606 [](
const SEG& a,
const SEG& b )
609 return LexicographicalCompare( a.A, b.A ) < 0;
610 return LexicographicalCompare( a.B, b.B ) < 0;
613 for(
size_t i = 0; i < segments.size(); ++i )
615 const SEG& seg1 = segments[i];
617 for(
size_t j = i + 1; j < segments.size(); ++j )
619 const SEG& seg2 = segments[j];
621 if( seg2.
A > seg1.
B )
624 if( seg1 == seg2 || ( seg1.
A == seg2.
B && seg1.
B == seg2.
A ) )
630 (*aErrorHandler)(
_(
"(self-intersecting)" ), a, b, seg1.
A );
632 selfIntersecting =
true;
640 (*aErrorHandler)(
_(
"(self-intersecting)" ), a, b, *pt );
642 selfIntersecting =
true;
647 return !selfIntersecting;
659 const nanoflann::ResultItem<uint32_t, double>& aRight )
661 if( aLeft.second != aRight.second )
662 return aLeft.second < aRight.second;
664 return aLeft.first < aRight.first;
674template <
typename CONSUMED_FUNC>
677 CONSUMED_FUNC aIsConsumed )
679 const double query_pt[2] = {
static_cast<double>( aPoint.
x ),
static_cast<double>( aPoint.
y ) };
680 const double radius_sq = aChainingEpsilon * aChainingEpsilon;
682 std::vector<nanoflann::ResultItem<uint32_t, double>> matches;
683 aKdTree.radiusSearch( query_pt, radius_sq, matches );
689 for(
const nanoflann::ResultItem<uint32_t, double>& match : matches )
693 if( candidate == aShape )
711 std::set<int> crossing;
713 for(
size_t ii = 0; ii < aContours.size(); ++ii )
715 for(
size_t jj = ii + 1; jj < aContours.size(); ++jj )
719 if( aContours[ii].Intersect( aContours[jj], intersections,
true ) != 0 )
721 crossing.insert( ii );
722 crossing.insert( jj );
739 int aErrorMax,
int aChainingEpsilon,
742 std::deque<PCB_SHAPE*>
chain;
743 chain.push_back( aStart );
749 std::set<PCB_SHAPE*> visited;
750 visited.insert( aStart );
752 auto extendChain = [&](
bool forward )
755 VECTOR2I prev = forward ? backPt : frontPt;
765 return aRemaining.find( aCandidate ) == aRemaining.end()
766 || visited.find( aCandidate ) != visited.end();
774 visited.insert(
next.available );
782 prev =
next.available->GetEnd();
784 prev =
next.available->GetStart();
786 curr =
next.available;
791 VECTOR2I chainPt = forward ? frontPt : backPt;
808 extendChain(
false );
814 std::map<std::pair<VECTOR2I, VECTOR2I>,
PCB_SHAPE*> shapeOwners;
818 if(
chain.size() > 1 )
822 startPt =
free_end( first, second );
830 aContour.
Append( startPt );
834 processShapeSegment( shapeInChain, aContour, prevPt, shapeOwners, aErrorMax, aChainingEpsilon,
false );
845 aRemaining.erase( consumed );
853 int aErrorMax,
int aChainingEpsilon,
bool aAllowDisjoint,
857 if( aShapeList.size() == 0 )
860 bool selfIntersecting =
false;
864 std::unordered_set<PCB_SHAPE*> remaining( aShapeList.begin(), aShapeList.end() );
869 KDTree kdTree( 2, adaptor );
872 std::map<std::pair<VECTOR2I, VECTOR2I>,
PCB_SHAPE*> shapeOwners;
877 auto it = shapeOwners.find( std::make_pair( seg.A, seg.B ) );
878 return it == shapeOwners.end() ? nullptr : it->second;
881 std::set<std::pair<PCB_SHAPE*, PCB_SHAPE*>> reportedGaps;
882 std::vector<SHAPE_LINE_CHAIN> contours;
883 contours.reserve( aShapeList.size() );
889 while( !remaining.empty() )
891 while( nextSeed < aShapeList.size() && !remaining.count( aShapeList[nextSeed] ) )
894 if( nextSeed >= aShapeList.size() )
897 graphic = aShapeList[nextSeed];
899 aCleaner.insert( graphic );
900 remaining.erase( graphic );
902 contours.emplace_back();
910 processClosedShape( graphic, currContour, shapeOwners, aErrorMax, aAllowUseArcsInPolygons );
915 std::deque<PCB_SHAPE*>
chain;
916 chain.push_back( graphic );
922 auto extendChain = [&](
bool forward )
925 VECTOR2I prev = forward ? backPt : frontPt;
938 aCleaner.insert(
next.available );
939 remaining.erase(
next.available );
947 prev =
next.available->GetEnd();
949 prev =
next.available->GetStart();
951 curr =
next.available;
955 VECTOR2I chainPt = forward ? frontPt : backPt;
961 else if(
next.consumed )
964 ( *aErrorHandler )(
_(
"(self-intersecting)" ), curr,
next.consumed, prev );
966 selfIntersecting =
true;
981 extendChain(
false );
987 if(
chain.size() > 1 )
991 startPt =
free_end( first, second );
998 currContour.
Append( startPt );
1004 aErrorMax, aChainingEpsilon, aAllowUseArcsInPolygons );
1021 arcChain.
Append( sarc, aErrorMax );
1023 if( !aAllowUseArcsInPolygons )
1026 for(
int ii = 1; ii < arcChain.
PointCount(); ++ii )
1027 shapeOwners[std::make_pair( arcChain.
CPoint( ii - 1 ), arcChain.
CPoint( ii ) )] = owner;
1030 currContour.
Append( arcChain );
1036 shapeOwners[ std::make_pair( currContour.
CPoints()[currContour.
PointCount() - 2],
1045 auto report_gap = [&](
const VECTOR2I& pt )
1047 if( !aErrorHandler )
1050 const double query_pt[2] = {
static_cast<double>( pt.x ),
static_cast<double>( pt.y ) };
1053 uint32_t indices[8] = { 0 };
1056 const size_t found = kdTree.knnSearch( query_pt, 8, indices, dists );
1065 for(
size_t ii = 1; ii < found; ++ii )
1067 if( adaptor.
endpoints[indices[ii]].second != shapeA )
1069 shapeB = adaptor.
endpoints[indices[ii]].second;
1075 auto key = std::minmax( shapeA, shapeB );
1077 if( !reportedGaps.insert( key ).second )
1086 if( effectiveShapeA && effectiveShapeB
1087 && effectiveShapeA->NearestPoints( effectiveShapeB.get(), ptA, ptB ) )
1089 midpoint = ( ptA + ptB ) / 2;
1092 ( *aErrorHandler )(
_(
"(not a closed shape)" ), shapeA, shapeB, midpoint );
1095 report_gap( currContour.
CPoint( 0 ) );
1104 if( !contour.IsClosed() )
1109 for(
size_t ii = 0; ii < contours.size(); ++ii )
1120 std::set<int> crossingContours;
1122 if( !aAllowUseArcsInPolygons )
1126 std::map<int, int> contourToOutlineIdxMap;
1127 if( !
addOutlinesToPolygon( contours, contourHierarchy, crossingContours, aPolygons, aAllowDisjoint, aErrorHandler,
1128 fetchOwner, contourToOutlineIdxMap ) )
1134 addHolesToPolygon( contours, contourHierarchy, contourToOutlineIdxMap, aPolygons, aAllowUseArcsInPolygons,
1143 int aErrorMax,
int aChainingEpsilon,
bool aAllowDisjoint,
1149 aAllowDisjoint, aErrorHandler, aAllowUseArcsInPolygons,
1157 bool success =
true;
1159 int min_dist = std::max( 0, aMinDist );
1164 std::vector<PCB_SHAPE*> shapeList;
1166 for(
int ii = 0; ii < items.
GetCount(); ii++ )
1171 shapeList.push_back( seg );
1177 switch( shape->GetShape() )
1181 VECTOR2I seg = shape->GetEnd() - shape->GetStart();
1184 if( dim <= min_dist )
1190 (*aErrorHandler)( wxString::Format(
_(
"(rectangle has null or very small "
1191 "size: %d nm)" ), dim ),
1192 shape,
nullptr, shape->GetStart() );
1200 int r = shape->GetRadius();
1208 (*aErrorHandler)( wxString::Format(
_(
"(circle has null or very small "
1209 "radius: %d nm)" ), r ),
1210 shape,
nullptr, shape->GetStart() );
1218 VECTOR2I seg = shape->GetEnd() - shape->GetStart();
1221 if( dim <= min_dist )
1227 (*aErrorHandler)( wxString::Format(
_(
"(segment has null or very small "
1228 "length: %d nm)" ), dim ),
1229 shape,
nullptr, shape->GetStart() );
1239 VECTOR2I arcMiddle = shape->GetArcMid();
1240 VECTOR2I seg1 = arcMiddle - shape->GetStart();
1241 VECTOR2I seg2 = shape->GetEnd() - arcMiddle;
1244 if( dim <= min_dist )
1250 (*aErrorHandler)( wxString::Format(
_(
"(arc has null or very small size: "
1252 shape,
nullptr, shape->GetStart() );
1267 const int major = shape->GetEllipseMajorRadius();
1268 const int minor = shape->GetEllipseMinorRadius();
1270 if( major <= min_dist || minor <= min_dist )
1276 ( *aErrorHandler )( wxString::Format(
_(
"(ellipse has null or very small "
1277 "radii: major=%d nm, minor=%d nm)" ),
1279 shape,
nullptr, shape->GetEllipseCenter() );
1291 std::vector<std::pair<PCB_SHAPE*, SHAPE_LINE_CHAIN>> closedContours;
1292 closedContours.reserve( shapeList.size() );
1294 std::set<PCB_SHAPE*> openShapes;
1302 std::map<std::pair<VECTOR2I, VECTOR2I>,
PCB_SHAPE*> shapeOwners;
1305 closedContours.emplace_back( shape, std::move( contour ) );
1310 openShapes.insert( shape );
1316 if( !openShapes.empty() )
1318 std::vector<PCB_SHAPE*> openShapeList( openShapes.begin(), openShapes.end() );
1320 KDTree kdTree( 2, adaptor );
1325 while( !openShapes.empty() )
1332 chainingEpsilon, contour, owner ) )
1334 closedContours.emplace_back( owner, std::move( contour ) );
1338 openShapes.erase( start );
1343 for(
size_t ii = 0; ii < closedContours.size(); ++ii )
1347 for(
size_t jj = ii + 1; jj < closedContours.size(); ++jj )
1353 if( contourA.
Intersect( contourB, intersections,
true ) == 0 )
1360 PCB_SHAPE* shapeA = closedContours[ii].first;
1361 PCB_SHAPE* shapeB = closedContours[jj].first;
1363 VECTOR2I midpoint = intersections.front().p;
1367 if( effectiveShapeA && effectiveShapeB )
1369 BOX2I bboxA = effectiveShapeA->BBox();
1370 BOX2I bboxB = effectiveShapeB->BBox();
1374 midpoint = overlapBox.
Centre();
1377 ( *aErrorHandler )(
_(
"(self-intersecting)" ), shapeA, shapeB, midpoint );
1387 int aChainingEpsilon,
bool aInferOutlineIfNecessary,
1392 bool success =
false;
1399 for(
int ii = 0; ii < items.
GetCount(); ++ii )
1407 std::vector<PCB_SHAPE*> fpSegList;
1409 for(
int ii = 0; ii < fpItems.
GetCount(); ii++ )
1414 fpSegList.push_back( fpSeg );
1417 if( !fpSegList.empty() )
1424 aAllowUseArcsInPolygons,
1434 fpHoles.
Append( fpOutlines );
1440 for(
int ii = 0; ii < fpItems.
GetCount(); ++ii )
1447 std::vector<PCB_SHAPE*> segList;
1449 for(
int ii = 0; ii < items.
GetCount(); ii++ )
1458 segList.push_back( seg );
1461 if( segList.size() )
1464 aErrorHandler, aAllowUseArcsInPolygons, cleaner );
1467 if( ( !success || !aOutlines.
OutlineCount() ) && aInferOutlineIfNecessary )
1490 aOutlines.
Append( corner );
1496 aOutlines.
Append( corner );
1499 if( aAllowUseArcsInPolygons )
1557 chain.SetClosed(
true );
1565 int aOutlineNum = 0 )
1567 int minDistance = -1;
1572 auto seg = it.Get();
1573 int dis = seg.Distance( aEndPoint );
1575 if( minDistance < 0 || ( dis < minDistance ) )
1578 projPoint = seg.NearestPoint( aEndPoint );
1594 bool foundA =
false;
1595 bool foundB =
false;
1613 if( foundA && foundB )
1616 if( foundSegs == 0 )
1620 seg.
A.
x, seg.
A.
y, seg.
B.
x, seg.
B.
y );
1628 seg.
A.
x, seg.
A.
y, seg.
B.
x, seg.
B.
y );
1654 bool success =
false;
1662 std::vector<PCB_SHAPE*> segList;
1664 for(
int ii = 0; ii < items.
GetCount(); ii++ )
1666 if( items[ii]->GetLayer() ==
Edge_Cuts )
1667 segList.push_back(
static_cast<PCB_SHAPE*
>( items[ii] ) );
1670 if( !segList.empty() )
1673 aErrorHandler,
false, cleaner );
1697 for(
int j = 0; j < outlines.
HoleCount( i ); j++ )
1702 aOutlines.
AddHole( hole, -1 );
1710 aOutlines = std::move( outlines );
1728 std::vector<SHAPE_LINE_CHAIN> closedChains;
1729 std::vector<SHAPE_LINE_CHAIN> openChains;
1733 openChains.push_back( outlines.
Outline( 0 ) );
1735 for(
int j = 0; j < outlines.
HoleCount( 0 ); j++ )
1742 closedChains.push_back( hole );
1747 openChains.push_back( hole );
1759 chain.SetClosed(
false );
1770 if(
chain.SegmentCount() == 0 )
1774 aOutlines = std::move( bbox );
1777 else if(
chain.SegmentCount() == 1 )
1781 wxLogTrace(
traceBoardOutline, wxT(
"Only 1 line segment in provided outline" ) );
1783 startSeg =
chain.Segment( 0 );
1791 if( inter0 && inter2 && !inter1 && !inter3 )
1794 wxLogTrace(
traceBoardOutline, wxT(
"Segment intersects only vertical bbox sides" ) );
1810 else if( inter1 && inter3 && !inter0 && !inter2 )
1813 wxLogTrace(
traceBoardOutline, wxT(
"Segment intersects only horizontal bbox sides" ) );
1832 wxLogTrace(
traceBoardOutline, wxT(
"Segment intersects two perpendicular bbox sides" ) );
1860 else if( hit1 && hit2 )
1879 else if( hit2 && hit3 )
1925 aOutlines = std::move( bbox );
1942 aOutlines = std::move( poly2 );
1947 aOutlines = std::move( poly1 );
1954 aOutlines.
AddHole( closedChain, -1 );
constexpr EDA_IU_SCALE pcbIUScale
A base class for any item which can be embedded within the BOARD container class, and therefore insta...
Information pertinent to a Pcbnew printed circuit board.
const BOX2I GetBoardEdgesBoundingBox() const
Return the board bounding box calculated using exclusively the board edges (graphics on Edge....
const BOX2I GetBoundingBox() const override
Return the orthogonal bounding box of this object for display purposes.
FOOTPRINT * GetFirstFootprint() const
Get the first footprint on the board or nullptr.
const FOOTPRINTS & Footprints() const
int GetOutlinesChainingEpsilon()
BOARD_DESIGN_SETTINGS & GetDesignSettings() const
BOX2I ComputeBoundingBox(bool aBoardEdgesOnly=false, bool aPhysicalLayersOnly=false) const
Calculate the bounding box containing all board items (or board edge segments).
constexpr BOX2< Vec > Intersect(const BOX2< Vec > &aRect)
constexpr BOX2< Vec > & Inflate(coord_type dx, coord_type dy)
Inflates the rectangle horizontally by dx and vertically by dy.
constexpr const Vec GetEnd() const
constexpr size_type GetWidth() const
constexpr Vec Centre() const
constexpr size_type GetHeight() const
constexpr const Vec & GetOrigin() const
constexpr bool IsValid() const
int GetCount() const
Return the number of objects in the list.
A base class for most all the KiCad significant classes used in schematics and boards.
void SetFlags(EDA_ITEM_FLAGS aMask)
void ClearFlags(EDA_ITEM_FLAGS aMask=EDA_ITEM_ALL_FLAGS)
EDA_ITEM_FLAGS GetFlags() const
int GetEllipseMinorRadius() const
const VECTOR2I & GetEllipseCenter() const
EDA_ANGLE GetEllipseEndAngle() const
int GetEllipseMajorRadius() const
int GetRectangleWidth() const
SHAPE_POLY_SET & GetPolyShape()
EDA_ANGLE GetEllipseRotation() const
void RebuildBezierToSegmentsPointsList(int aMaxError)
Rebuild the m_bezierPoints vertex list that approximate the Bezier curve by a list of segments.
const VECTOR2I & GetEnd() const
Return the ending point of the graphic.
const VECTOR2I & GetStart() const
Return the starting point of the graphic.
std::vector< VECTOR2I > GetRectCorners() const
EDA_ANGLE GetEllipseStartAngle() const
const std::vector< VECTOR2I > & GetBezierPoints() const
int GetRectangleHeight() const
int GetCornerRadius() const
VECTOR2I GetArcMid() const
VECTOR2I GetCenter() const override
This defaults to the center of the bounding box if not overridden.
int GetWidth() const override
std::shared_ptr< SHAPE > GetEffectiveShape(PCB_LAYER_ID aLayer=UNDEFINED_LAYER, FLASHING aFlash=FLASHING::DEFAULT, DRC_CONSTRAINT_T aUsage=NULL_CONSTRAINT) const override
Make a set of SHAPE objects representing the PCB_SHAPE.
PCB_LAYER_ID GetLayer() const override
Return the primary layer this item is on.
Collect all BOARD_ITEM objects of a given set of KICAD_T type(s).
void Collect(BOARD_ITEM *aBoard, const std::vector< KICAD_T > &aTypes)
Collect BOARD_ITEM objects using this class's Inspector method, which does the collection.
A round rectangle shape, based on a rectangle and a radius.
void TransformToPolygon(SHAPE_POLY_SET &aBuffer, int aMaxError) const
Get the polygonal representation of the roundrect.
EDA_ITEM_FLAGS m_flagsToClear
SCOPED_FLAGS_CLEANER(const EDA_ITEM_FLAGS &aFlagsToClear)
OPT_VECTOR2I Intersect(const SEG &aSeg, bool aIgnoreEndpoints=false, bool aLines=false) const
Compute intersection point of segment (this) with segment aSeg.
static SEG::ecoord Square(int a)
OPT_VECTOR2I IntersectLines(const SEG &aSeg) const
Compute the intersection point of lines passing through ends of (this) and aSeg.
bool Contains(const SEG &aSeg) const
const VECTOR2I & GetArcMid() const
const VECTOR2I & GetP0() const
SHAPE_LINE_CHAIN ConvertToPolyline(int aMaxError) const
Build a polyline approximation of the ellipse or arc.
Represent a polyline containing arcs as well as line segments: A chain of connected line and/or arc s...
const SHAPE_LINE_CHAIN Reverse() const
Reverse point order in the line chain.
const SHAPE_ARC & Arc(size_t aArc) const
bool IsClosed() const override
virtual const VECTOR2I GetPoint(int aIndex) const override
void SetPoint(int aIndex, const VECTOR2I &aPos)
Move a point to a specific location.
void GenerateBBoxCache() const
void SetClosed(bool aClosed)
Mark the line chain as closed (i.e.
int Intersect(const SEG &aSeg, INTERSECTIONS &aIp) const
Find all intersection points between our line chain and the segment aSeg.
int PointCount() const
Return the number of points (vertices) in this line chain.
bool IsArcEnd(size_t aIndex) const
void ClearArcs()
Remove all arc references in the line chain, resulting in a chain formed only of straight segments.
ssize_t ArcIndex(size_t aSegment) const
Return the arc index for the given segment index.
void Clear()
Remove all points from the line chain.
void SetWidth(int aWidth) override
Set the width of all segments in the chain.
SEG Segment(int aIndex) const
Return a copy of the aIndex-th segment in the line chain.
BOX2I * GetCachedBBox() const override
void Append(int aX, int aY, bool aAllowDuplication=false)
Append a new point at the end of the line chain.
virtual const SEG GetSegment(int aIndex) const override
const VECTOR2I & CPoint(int aIndex) const
Return a reference to a given point in the line chain.
int SegmentCount() const
Return the number of segments in this line chain.
const VECTOR2I & CLastPoint() const
Return the last point in the line chain.
const SEG CSegment(int aIndex) const
Return a constant copy of the aIndex segment in the line chain.
void RemoveShape(int aPointIndex)
Remove the shape at the given index from the line chain.
bool PointInside(const VECTOR2I &aPt, int aAccuracy=0, bool aUseBBoxCache=false) const override
Check if point aP lies inside a closed shape.
std::vector< INTERSECTION > INTERSECTIONS
const std::vector< VECTOR2I > & CPoints() const
Represent a set of closed polygons.
void RemoveAllContours()
Remove all outlines & holes (clears) the polygon set.
void BooleanAdd(const SHAPE_POLY_SET &b)
Perform boolean polyset union.
void ClearArcs()
Removes all arc references from all the outlines and holes in the polyset.
int AddOutline(const SHAPE_LINE_CHAIN &aOutline)
Adds a new outline to the set and returns its index.
bool IsEmpty() const
Return true if the set is empty (no polygons at all)
CONST_ITERATOR CIterate(int aFirst, int aLast, bool aIterateHoles=false) const
int HoleCount(int aOutline) const
Returns the number of holes in a given outline.
int Append(int x, int y, int aOutline=-1, int aHole=-1, bool aAllowDuplication=false)
Appends a vertex at the end of the given outline/hole (default: the last outline)
void Simplify()
Simplify the polyset (merges overlapping polys, eliminates degeneracy/self-intersections)
int AddHole(const SHAPE_LINE_CHAIN &aHole, int aOutline=-1)
Adds a new hole to the given outline (default: last) and returns its index.
SHAPE_LINE_CHAIN & Outline(int aIndex)
Return the reference to aIndex-th outline in the set.
SHAPE_LINE_CHAIN & Hole(int aOutline, int aHole)
Return the reference to aHole-th hole in the aIndex-th outline.
int NewOutline()
Creates a new empty polygon in the set and returns its index.
void BooleanIntersection(const SHAPE_POLY_SET &b)
Perform boolean polyset intersection.
CONST_SEGMENT_ITERATOR CIterateSegments(int aFirst, int aLast, bool aIterateHoles=false) const
Return an iterator object, for iterating between aFirst and aLast outline, with or without holes (def...
int OutlineCount() const
Return the number of outlines in the set.
SHAPE_POLY_SET CloneDropTriangulation() const
void BooleanSubtract(const SHAPE_POLY_SET &b)
Perform boolean polyset difference.
SEGMENT_ITERATOR IterateSegmentsWithHoles()
Returns an iterator object, for all outlines in the set (with holes)
T EuclideanNorm() const
Compute the Euclidean norm of the vector, which is defined as sqrt(x ** 2 + y ** 2).
VECTOR2I projectPointOnSegment(const VECTOR2I &aEndPoint, const SHAPE_POLY_SET &aOutline, int aOutlineNum=0)
static void addHolesToPolygon(const std::vector< SHAPE_LINE_CHAIN > &aContours, const std::map< int, std::vector< int > > &aContourHierarchy, const std::map< int, int > &aContourToOutlineIdxMap, SHAPE_POLY_SET &aPolygons, bool aAllowUseArcsInPolygons, const std::set< int > &aCrossingContours)
bool BuildBoardPolygonOutlines(BOARD *aBoard, SHAPE_POLY_SET &aOutlines, int aErrorMax, int aChainingEpsilon, bool aInferOutlineIfNecessary, OUTLINE_ERROR_HANDLER *aErrorHandler, bool aAllowUseArcsInPolygons)
Extract the board outlines and build a closed polygon from lines, arcs and circle items on edge cut l...
static bool addOutlinesToPolygon(const std::vector< SHAPE_LINE_CHAIN > &aContours, const std::map< int, std::vector< int > > &aContourHierarchy, const std::set< int > &aCrossingContours, SHAPE_POLY_SET &aPolygons, bool aAllowDisjoint, OUTLINE_ERROR_HANDLER *aErrorHandler, const std::function< PCB_SHAPE *(const SEG &)> &aFetchOwner, std::map< int, int > &aContourToOutlineIdxMap)
static bool closerEndpoint(const nanoflann::ResultItem< uint32_t, double > &aLeft, const nanoflann::ResultItem< uint32_t, double > &aRight)
static bool isCopperOutside(const FOOTPRINT *aFootprint, SHAPE_POLY_SET &aShape)
static void processClosedShape(PCB_SHAPE *aShape, SHAPE_LINE_CHAIN &aContour, std::map< std::pair< VECTOR2I, VECTOR2I >, PCB_SHAPE * > &aShapeOwners, int aErrorMax, bool aAllowUseArcsInPolygons)
nanoflann::KDTreeSingleIndexAdaptor< nanoflann::L2_Simple_Adaptor< double, PCB_SHAPE_ENDPOINTS_ADAPTOR >, PCB_SHAPE_ENDPOINTS_ADAPTOR, 2 > KDTree
bool ConvertOutlineToPolygon(std::vector< PCB_SHAPE * > &aShapeList, SHAPE_POLY_SET &aPolygons, int aErrorMax, int aChainingEpsilon, bool aAllowDisjoint, OUTLINE_ERROR_HANDLER *aErrorHandler, bool aAllowUseArcsInPolygons)
Build a polygon set with holes from a PCB_SHAPE list.
bool TestBoardOutlinesGraphicItems(BOARD *aBoard, int aMinDist, OUTLINE_ERROR_HANDLER *aErrorHandler)
Test a board graphic items on edge cut layer for validity.
static std::set< int > findCrossingContours(const std::vector< SHAPE_LINE_CHAIN > &aContours)
void buildBoardBoundingBoxPoly(const BOARD *aBoard, SHAPE_POLY_SET &aOutline)
Get the complete bounding box of the board (including all items).
int findEndSegments(SHAPE_LINE_CHAIN &aChain, SEG &aStartSeg, SEG &aEndSeg)
static bool buildChainedClosedContour(PCB_SHAPE *aStart, std::set< PCB_SHAPE * > &aRemaining, const KDTree &aKdTree, const PCB_SHAPE_ENDPOINTS_ADAPTOR &aAdaptor, int aErrorMax, int aChainingEpsilon, SHAPE_LINE_CHAIN &aContour, PCB_SHAPE *&aOwnerShape)
static bool close_enough(VECTOR2I aLeft, VECTOR2I aRight, unsigned aLimit)
Local and tunable method of qualifying the proximity of two points.
static bool checkSelfIntersections(SHAPE_POLY_SET &aPolygons, OUTLINE_ERROR_HANDLER *aErrorHandler, const std::function< PCB_SHAPE *(const SEG &)> &aFetchOwner)
static std::map< int, std::vector< int > > buildContourHierarchy(const std::vector< SHAPE_LINE_CHAIN > &aContours)
static CHAIN_NEIGHBOURS findNeighbours(PCB_SHAPE *aShape, const VECTOR2I &aPoint, const KDTree &aKdTree, const PCB_SHAPE_ENDPOINTS_ADAPTOR &aAdaptor, double aChainingEpsilon, CONSUMED_FUNC aIsConsumed)
Find the shapes that could continue a chain at aPoint.
static bool closer_to_first(VECTOR2I aRef, VECTOR2I aFirst, VECTOR2I aSecond)
Local method which qualifies whether the start or end point of a segment is closest to a point.
bool BuildFootprintPolygonOutlines(BOARD *aBoard, SHAPE_POLY_SET &aOutlines, int aErrorMax, int aChainingEpsilon, OUTLINE_ERROR_HANDLER *aErrorHandler)
Extract a board outline for a footprint view.
static void processShapeSegment(PCB_SHAPE *aShape, SHAPE_LINE_CHAIN &aContour, VECTOR2I &aPrevPt, std::map< std::pair< VECTOR2I, VECTOR2I >, PCB_SHAPE * > &aShapeOwners, int aErrorMax, int aChainingEpsilon, bool aAllowUseArcsInPolygons)
static VECTOR2I free_end(const PCB_SHAPE *aFirst, const PCB_SHAPE *aSecond)
Return the end of aFirst that does not join aSecond.
bool doConvertOutlineToPolygon(std::vector< PCB_SHAPE * > &aShapeList, SHAPE_POLY_SET &aPolygons, int aErrorMax, int aChainingEpsilon, bool aAllowDisjoint, OUTLINE_ERROR_HANDLER *aErrorHandler, bool aAllowUseArcsInPolygons, SCOPED_FLAGS_CLEANER &aCleaner)
const std::function< void(const wxString &msg, BOARD_ITEM *itemA, BOARD_ITEM *itemB, const VECTOR2I &pt)> OUTLINE_ERROR_HANDLER
static constexpr EDA_ANGLE ANGLE_360
#define SKIP_STRUCT
flag indicating that the structure should be ignored
std::uint32_t EDA_ITEM_FLAGS
@ RECTANGLE
Use RECTANGLE instead of RECT to avoid collision in a Windows header.
a few functions useful in geometry calculations.
const wxChar * traceBoardOutline
Flag to enable debug tracing for the board outline creation.
PCB_LAYER_ID
A quick note on layer IDs:
This file contains miscellaneous commonly used macros and functions.
#define UNIMPLEMENTED_FOR(type)
std::optional< VECTOR2I > OPT_VECTOR2I
PCB_SHAPE * available
nearest unchained
PCB_SHAPE * consumed
nearest already chained
std::vector< std::pair< VECTOR2I, PCB_SHAPE * > > endpoints
bool kdtree_get_bbox(BBOX &) const
PCB_SHAPE_ENDPOINTS_ADAPTOR(const std::vector< PCB_SHAPE * > &shapes)
size_t kdtree_get_point_count() const
double kdtree_get_pt(const size_t idx, const size_t dim) const
const SHAPE_LINE_CHAIN chain
wxString result
Test unit parsing edge cases and error handling.
@ PCB_SHAPE_T
class PCB_SHAPE, a segment not on copper layers
VECTOR2< int32_t > VECTOR2I
constexpr int LexicographicalCompare(const VECTOR2< T > &aA, const VECTOR2< T > &aB)