75bool allSegments(
const std::vector<BOARD_ITEM*>& aItems )
77 return std::ranges::all_of( aItems, isSegment );
82bool allRadial(
const std::vector<BOARD_ITEM*>& aItems )
84 return std::ranges::all_of( aItems, isCircleOrArc );
89bool allCentered(
const std::vector<BOARD_ITEM*>& aItems )
91 return std::ranges::all_of( aItems,
94 return isCircleOrArc( aItem ) || isEllipseKind( aItem );
107 SEG::ecoord best = ( aEnds[0] - bEnds[0] ).SquaredEuclideanNorm();
109 for(
int i = 0; i < 2; ++i )
111 for(
int j = 0; j < 2; ++j )
113 SEG::ecoord dist = ( aEnds[i] - bEnds[j] ).SquaredEuclideanNorm();
127 return SEG( aEnds[
vA], aEnds[1 -
vA] ).
Angle(
SEG( bEnds[vB], bEnds[1 - vB] ) );
133 const std::vector<BOARD_ITEM*>& aItems )
136 auto makeWhole = [&]()
138 std::unique_ptr<PCB_CONSTRAINT> c = std::make_unique<PCB_CONSTRAINT>( aParent, aType );
153 if( aItems.size() != 2 || !allSegments( aItems ) )
162 if( aItems.size() != 1 || !isSegment( aItems[0] ) )
170 if( aItems.size() != 1 || !isSegment( aItems[0] ) )
175 std::unique_ptr<PCB_CONSTRAINT> c = makeWhole();
176 c->SetValue( ( seg->
GetEnd() - seg->
GetStart() ).EuclideanNorm() );
182 if( aItems.size() != 2 || !allCentered( aItems ) )
190 if( aItems.size() != 2 || !allRadial( aItems ) )
198 if( aItems.size() != 2 || !allSegments( aItems ) )
209 std::unique_ptr<PCB_CONSTRAINT> c = makeWhole();
217 if( aItems.size() != 1 || !isCircleOrArc( aItems[0] ) )
220 std::unique_ptr<PCB_CONSTRAINT> c = makeWhole();
221 c->SetValue(
static_cast<const PCB_SHAPE*
>( aItems[0] )->GetRadius() );
227 if( aItems.size() != 1 || !isArc( aItems[0] ) )
230 std::unique_ptr<PCB_CONSTRAINT> c = makeWhole();
231 c->SetValue(
static_cast<const PCB_SHAPE*
>( aItems[0] )->GetArcAngle().AsDegrees() );
237 if( aItems.size() != 2 )
245 return isCircleOrArc( aItem ) || isEllipseKind( aItem );
248 bool lineCurve = ( isSegment( a ) && isCurve( b ) ) || ( isSegment( b ) && isCurve( a ) );
249 bool curveCurve = isCircleOrArc( a ) && isCircleOrArc( b );
251 if( !lineCurve && !curveCurve )
277 format =
_(
"%s needs two line segments. Click them to constrain." );
282 format =
_(
"%s needs two line segments of nonzero length. Click them to constrain." );
287 format =
_(
"%s needs one line segment, or two anchor points. Click them to constrain." );
291 format =
_(
"%s needs one line segment. Click it to constrain." );
296 format =
_(
"%s needs two arcs, circles or ellipses. Click them to constrain." );
300 format =
_(
"%s needs two arcs or circles. Click them to constrain." );
304 format =
_(
"%s needs one arc or circle. Click it to constrain." );
308 format =
_(
"%s needs one arc. Click it to constrain." );
313 format =
_(
"%s needs a line and a curve, or two arcs or circles. Click them to constrain." );
323 return wxEmptyString;
332 std::vector<CONSTRAINT_ANCHOR_POINT> anchors;
359 VECTOR2I tl( std::min( s.
x, e.
x ), std::min( s.
y, e.
y ) );
360 VECTOR2I br( std::max( s.
x, e.
x ), std::max( s.
y, e.
y ) );
376 for(
int i = 0; i < outline.
PointCount(); ++i )
377 anchors.push_back( { CONSTRAINT_ANCHOR::VERTEX, outline.CPoint( i ), i } );
406 if( !aShape || aIndex < 0 )
414 if( aIndex >= (
int) anchors.size() )
417 return anchors[aIndex];
422 const VECTOR2I& aPos,
double aMaxDist )
424 double best = aMaxDist;
425 std::optional<CONSTRAINT_MEMBER>
result;
431 double dist = ( a.pos - aPos ).EuclideanNorm();
447 std::vector<PCB_SHAPE*> shapes;
456 shapes.push_back( shape );
462 for(
BOARD_ITEM* item : footprint->GraphicalItems() )
467 shapes.push_back( shape );
478 std::vector<BOARD_ITEM*> items;
484 [&](
const auto& aContainer )
491 items.push_back( item );
499 collect( footprint->GraphicalItems() );
507 const std::vector<CONSTRAINT_MEMBER>& aExclude )
509 double best = aMaxDist;
510 std::optional<CONSTRAINT_MEMBER>
result;
522 double dist = ( a.pos - aPos ).EuclideanNorm();
537 const std::optional<VECTOR2I>& aEnd,
double aMaxDist )
539 std::vector<ENDPOINT_BINDING> bindings;
546 using ANCHOR_PAIR = std::pair<CONSTRAINT_MEMBER, CONSTRAINT_MEMBER>;
548 auto bestPairOn = [&](
BOARD_ITEM* aCandidate ) -> std::optional<std::pair<ANCHOR_PAIR, double>>
554 const size_t none = anchors.size();
555 size_t bestEnd = none;
556 size_t secondEnd = none;
557 std::vector<double> dEnd( anchors.size(), 0.0 );
559 for(
size_t j = 0; j < anchors.size(); ++j )
561 dEnd[j] = ( anchors[j].pos - *aEnd ).EuclideanNorm();
563 if( dEnd[j] > aMaxDist )
566 if( bestEnd == none || dEnd[j] < dEnd[bestEnd] )
571 else if( secondEnd == none || dEnd[j] < dEnd[secondEnd] )
577 if( bestEnd == none )
580 std::optional<std::pair<ANCHOR_PAIR, double>> best;
582 for(
size_t i = 0; i < anchors.size(); ++i )
584 double dStart = ( anchors[i].pos - aStart ).EuclideanNorm();
586 if( dStart > aMaxDist )
589 size_t j = ( i == bestEnd ) ? secondEnd : bestEnd;
594 double sum = dStart + dEnd[j];
596 if( !best || sum < best->second )
598 best = std::make_pair(
599 ANCHOR_PAIR{
CONSTRAINT_MEMBER( aCandidate->m_Uuid, anchors[i].anchor, anchors[i].index ),
612 std::optional<ANCHOR_PAIR> bestPair;
613 double bestSum = 0.0;
617 if( item->m_Uuid == aItem )
620 auto pair = bestPairOn( item );
625 if( !bestPair || pair->second < bestSum )
627 bestSum = pair->second;
628 bestPair = pair->first;
647 exclude.push_back( *startTarget );
675 double best = aMaxDist;
676 std::optional<KIID>
result;
680 const SHAPE_T shapeType = shape->GetShape();
685 dist =
SEG( shape->GetStart(), shape->GetEnd() ).
Distance( aPos );
689 dist =
std::abs( ( aPos - shape->GetCenter() ).EuclideanNorm() - shape->GetRadius() );
695 double a = shape->GetEllipseMajorRadius();
696 double b = shape->GetEllipseMinorRadius();
697 double phi = shape->GetEllipseRotation().AsRadians();
699 double lx = d.
x * std::cos( phi ) + d.
y * std::sin( phi );
700 double ly = -d.
x * std::sin( phi ) + d.
y * std::cos( phi );
701 double r = std::hypot( lx, ly );
703 if( a <= 0 || b <= 0 )
706 double theta = std::atan2( ly, lx );
707 double re = a * b / std::hypot( b * std::cos( theta ), a * std::sin( theta ) );
737 std::vector<CONSTRAINT_ANCHOR_POINT> anchors;
742 switch( aItem->
Type() )
778 const std::map<PCB_CONSTRAINT_TYPE, double>& aRemembered )
780 auto it = aRemembered.find( aType );
782 return it != aRemembered.end() ? it->second : aMeasured;
787 const VECTOR2I& aPos,
int aMaxDist )
789 auto it = std::ranges::find_if( aCandidates,
792 return aShape && aShape->
HitTest( aPos, aMaxDist );
795 return it == aCandidates.end() ? std::nullopt : std::optional<KIID>( ( *it )->m_Uuid );
806 std::optional<KIID> best;
807 double bestErr = 0.0;
811 if( shape->m_Uuid == aDimension || !isCircleOrArc( shape ) )
816 std::optional<VECTOR2I> centerPos;
827 double centerErr = ( *centerPos - aCenter ).EuclideanNorm();
829 if( centerErr > aMaxDist )
832 double rimErr =
std::abs( ( aRim - *centerPos ).EuclideanNorm() - shape->GetRadius() );
834 if( rimErr > aMaxDist )
842 double err = centerErr + rimErr;
844 if( !best || err < bestErr )
847 best = shape->m_Uuid;
857 if( !aBoard || !aDimension )
863 auto anyConstraint = [&](
const auto& aMatch )
865 if( std::ranges::any_of( aBoard->
Constraints(), aMatch ) )
870 return std::ranges::any_of( aBoard->
Footprints(),
872 { return std::ranges::any_of( aFootprint->Constraints(), aMatch ); } );
879 auto rimOnItem = [&](
const KIID& aItem )
881 return anyConstraint(
889 const std::vector<CONSTRAINT_MEMBER>& members = aConstraint->
GetMembers();
891 return members.size() == 2 && members[0] == endMember
896 return anyConstraint(
902 const std::vector<CONSTRAINT_MEMBER>& members = aConstraint->
GetMembers();
904 if( members.size() != 2 )
910 if( members[0] == startMember )
911 target = &members[1];
912 else if( members[1] == startMember )
913 target = &members[0];
920 return item && isCircleOrArc( item ) && rimOnItem( target->
m_item );
928 return anyConstraint(
934 const std::vector<CONSTRAINT_MEMBER>& members = aConstraint->
GetMembers();
937 if( members.size() != 2 || members[0].m_item == members[1].m_item )
940 if( members[0] == aMember )
943 return members[1] == aMember
948 return hasCoincident( startMember ) && hasCoincident( endMember );
957 switch( aDimension->
Type() )
972 if( !aBoard || !aDimension )
983 const std::vector<CONSTRAINT_MEMBER>& members = aConstraint->GetMembers();
985 return members.size() == 2
986 && ( ( members[0] == startMember && members[1] == endMember )
987 || ( members[0] == endMember && members[1] == startMember ) );
992 auto it = std::ranges::find_if( aList, matches );
993 return it != aList.end() ? *it :
nullptr;
1021 return existing && existing->
IsDriving();
1029 if( lengthConstraint && lengthConstraint->
IsDriving() )
1040 std::optional<int> aDrivingLengthIU,
1041 const std::optional<wxString>& aOverrideText,
1042 const std::function<
void(
BOARD_ITEM* )>& aBeforeModify,
1043 const std::function<
void(
BOARD_ITEM* )>& aStageAdd,
1044 const std::function<
void(
BOARD_ITEM* )>& aBeforeRemove )
1055 if( !aDrivingLengthIU || *aDrivingLengthIU <= 0 || !
DimensionCanDrive( aBoard, aDimension ) )
1058 aBeforeModify( aDimension );
1064 aBeforeModify( existing );
1065 existing->
SetValue( *aDrivingLengthIU );
1077 constraint->SetValue( *aDrivingLengthIU );
1078 constraint->SetDriving(
true );
1081 aStageAdd( constraint.release() );
1085 aBeforeModify( aDimension );
1095 aBeforeRemove( existing );
1102 const std::function<
void(
BOARD_ITEM* )>& aBeforeModify,
1103 const std::function<
void(
BOARD_ITEM* )>& aBeforeRemove )
1105 if( !aBoard || aDelta == 0 )
1108 auto remapIn = [&](
const CONSTRAINTS& aConstraints )
1112 bool shifts =
false;
1113 bool doomed =
false;
1120 if( aDelta < 0 && member.m_index == aChangedIndex )
1122 else if( member.m_index >= aChangedIndex )
1131 aBeforeRemove( constraint );
1138 aBeforeModify( constraint );
1143 && member.m_index >= aChangedIndex )
1145 member.m_index += aDelta;
1154 remapIn( footprint->Constraints() );
1162 return std::ranges::any_of( aList,
1172 return std::ranges::any_of( aBoard->
Footprints(),
1175 return scan( aFootprint->Constraints() );
1184constexpr double AUTO_BIND_TOL_MM = 0.01;
1185constexpr double AUTO_CORRIDOR_MM = 0.25;
1186constexpr double AUTO_TANGENT_TOL_DEG = 10.0;
1190std::optional<double> tangentDirAt(
const PCB_SHAPE* aShape,
const VECTOR2I& aPos )
1198 if( dir.EuclideanNorm() == 0 )
1199 return std::nullopt;
1201 return std::atan2( dir.y, dir.x );
1209 if( radial.EuclideanNorm() == 0 )
1210 return std::nullopt;
1212 return std::atan2( radial.y, radial.x ) +
M_PI / 2;
1215 default:
return std::nullopt;
1225 const double tangentTol = AUTO_TANGENT_TOL_DEG *
M_PI / 180.0;
1230 if( !curveInvolved )
1233 std::optional<double> myDir = tangentDirAt( aShape, aPos );
1234 std::optional<double> otherDir = tangentDirAt( aTarget, aPos );
1236 if( !myDir || !otherDir )
1239 double diff = std::fabs( std::fmod( *myDir - *otherDir,
M_PI ) );
1240 diff = std::min( diff,
M_PI - diff );
1242 if( diff > tangentTol )
1255void addUnlessDuplicate(
BOARD* aBoard, std::vector<AUTO_CONSTRAINT>& aResult,
1256 std::unique_ptr<PCB_CONSTRAINT> aConstraint,
bool aNeedsSolve )
1261 if( std::ranges::any_of( aResult,
1270 aResult.push_back( { std::move( aConstraint ), aNeedsSolve } );
1278 std::vector<AUTO_CONSTRAINT>
result;
1280 const double tol =
pcbIUScale.mmToIU( AUTO_BIND_TOL_MM );
1287 std::unique_ptr<PCB_CONSTRAINT> constraint;
1299 constraint->AddMember( target->m_item, target->m_anchor, target->m_index );
1302 addUnlessDuplicate( aBoard,
result, std::move( constraint ),
false );
1306 if( *outline != aShape->
m_Uuid )
1312 addUnlessDuplicate( aBoard,
result, std::move( constraint ),
false );
1322 std::vector<AUTO_CONSTRAINT>& aResult, std::set<CONSTRAINT_ANCHOR>& aBound,
1323 std::vector<std::pair<VECTOR2I, KIID>>& aTouches )
1325 const double tol =
pcbIUScale.mmToIU( AUTO_BIND_TOL_MM );
1327 std::vector<ENDPOINT_BINDING> bindings =
1333 constraint->AddMember( aShape->
m_Uuid, binding.sourceAnchor );
1334 constraint->AddMember( binding.target.m_item, binding.target.m_anchor, binding.target.m_index );
1336 aBound.insert( binding.sourceAnchor );
1339 aTouches.emplace_back( pos, binding.target.m_item );
1341 addUnlessDuplicate( aBoard, aResult, std::move( constraint ),
false );
1349 std::vector<AUTO_CONSTRAINT>& aResult,
const std::set<CONSTRAINT_ANCHOR>& aBound,
1350 std::vector<std::pair<VECTOR2I, KIID>>& aTouches )
1352 const double tol =
pcbIUScale.mmToIU( AUTO_BIND_TOL_MM );
1356 if( aBound.contains(
anchor ) )
1362 if( !target || *target == aShape->
m_Uuid )
1372 if( ( pos - mid ).EuclideanNorm() <= tol )
1376 auto constraint = std::make_unique<PCB_CONSTRAINT>( aParent, type );
1380 aTouches.emplace_back( pos, *target );
1382 addUnlessDuplicate( aBoard, aResult, std::move( constraint ),
false );
1390 std::vector<AUTO_CONSTRAINT>& aResult )
1395 const double tol =
pcbIUScale.mmToIU( AUTO_BIND_TOL_MM );
1396 const double corridor =
pcbIUScale.mmToIU( AUTO_CORRIDOR_MM );
1399 std::vector<VECTOR2I> boundPos;
1408 if( span.Distance(
anchor.pos ) > corridor )
1412 if( (
anchor.pos - aShape->
GetStart() ).EuclideanNorm() <= corridor
1413 || (
anchor.pos - aShape->
GetEnd() ).EuclideanNorm() <= corridor )
1419 if( std::ranges::any_of( boundPos,
1422 return (
anchor.pos - aP ).EuclideanNorm() <= tol;
1428 boundPos.push_back(
anchor.pos );
1431 constraint->AddMember( item->m_Uuid,
anchor.anchor,
anchor.index );
1434 addUnlessDuplicate( aBoard, aResult, std::move( constraint ),
true );
1441void selectTangents(
BOARD* aBoard,
const PCB_SHAPE* aShape,
BOARD_ITEM* aParent, std::vector<AUTO_CONSTRAINT>& aResult,
1442 const std::vector<std::pair<VECTOR2I, KIID>>& aTouches )
1444 for(
const auto& [pos,
id] : aTouches )
1448 if( target && target != aShape )
1450 if( std::unique_ptr<PCB_CONSTRAINT> tangent = makeTangent( aShape, target, pos, aParent ) )
1451 addUnlessDuplicate( aBoard, aResult, std::move( tangent ),
true );
1459 std::vector<AUTO_CONSTRAINT>& aResult )
1467 if( !horizontal && !vertical )
1474 addUnlessDuplicate( aBoard, aResult, std::move( constraint ),
false );
1480 bool aAxisConstraint )
1482 std::vector<AUTO_CONSTRAINT>
result;
1484 if( !aBoard || !aShape )
1488 return selectCenterBindings( aBoard, aShape, aParent );
1490 std::set<CONSTRAINT_ANCHOR> bound;
1491 std::vector<std::pair<VECTOR2I, KIID>> touches;
1493 selectEndpointCoincidents( aBoard, aShape, aParent,
result, bound, touches );
1494 selectOutlineFallbacks( aBoard, aShape, aParent,
result, bound, touches );
1495 selectCorridorPins( aBoard, aShape, aParent,
result );
1496 selectTangents( aBoard, aShape, aParent,
result, touches );
1498 if( aAxisConstraint )
1499 selectAxisConstraint( aBoard, aShape, aParent,
result );
constexpr EDA_IU_SCALE pcbIUScale
constexpr BOX2I KiROUND(const BOX2D &aBoxD)
A base class for any item which can be embedded within the BOARD container class, and therefore insta...
FOOTPRINT * GetParentFootprint() const
Information pertinent to a Pcbnew printed circuit board.
const FOOTPRINTS & Footprints() const
const CONSTRAINTS & Constraints() const
Geometric constraints (#2329) owned by this board.
bool IsLayerVisible(PCB_LAYER_ID aLayer) const
A proxy function that calls the correspondent function in m_BoardSettings tests whether a given layer...
BOARD_ITEM * ResolveItem(const KIID &aID, bool aAllowNullptrReturn=false) const
const DRAWINGS & Drawings() const
KICAD_T Type() const
Returns the type of object.
SHAPE_POLY_SET & GetPolyShape()
const VECTOR2I & GetEnd() const
Return the ending point of the graphic.
const VECTOR2I & GetStart() const
Return the starting point of the graphic.
A geometric constraint between board items (issue #2329).
const std::vector< CONSTRAINT_MEMBER > & GetMembers() const
bool IsDriving() const
A driving constraint forces its value; a reference (non-driving) one only measures it.
PCB_CONSTRAINT_TYPE GetConstraintType() const
void SetValue(std::optional< double > aValue)
void SetDriving(bool aDriving)
void Update()
Update the dimension's cached text and geometry.
void SetOverrideTextEnabled(bool aOverride)
void SetOverrideText(const wxString &aValue)
bool GetOverrideTextEnabled() const
VECTOR2I GetCenter() const override
This defaults to the center of the bounding box if not overridden.
bool HitTest(const VECTOR2I &aPosition, int aAccuracy=0) const override
Test if aPosition is inside or on the boundary of this item.
VECTOR2I::extended_type ecoord
int Distance(const SEG &aSeg) const
Compute minimum Euclidean distance to segment aSeg.
EDA_ANGLE Angle(const SEG &aOther) const
Determine the smallest angle between two segments.
Represent a polyline containing arcs as well as line segments: A chain of connected line and/or arc s...
int PointCount() const
Return the number of points (vertices) in this line chain.
Represent a set of closed polygons.
int HoleCount(int aOutline) const
Returns the number of holes in a given outline.
int OutlineCount() const
Return the number of outlines in the set.
const SHAPE_LINE_CHAIN & COutline(int aIndex) const
DIM_VALUE_MODE DimensionValueMode(BOARD *aBoard, const PCB_DIMENSION_BASE *aDimension)
The value mode aDimension is in, derived from state: a self driving length means Driving,...
void RemapPolygonVertexMembers(BOARD *aBoard, const KIID &aPoly, int aChangedIndex, int aDelta, const std::function< void(BOARD_ITEM *)> &aBeforeModify, const std::function< void(BOARD_ITEM *)> &aBeforeRemove)
Repoint persisted VERTEX constraint members after an outline edit of polygon aPoly inserts or removes...
std::vector< PCB_SHAPE * > CollectConstraintShapes(BOARD *aBoard)
Every PCB_SHAPE on a visible layer (drawings plus footprint graphics) – the candidates constraints ca...
std::vector< AUTO_CONSTRAINT > SelectShapeAutoConstraints(BOARD *aBoard, const PCB_SHAPE *aShape, BOARD_ITEM *aParent, bool aAxisConstraint)
Choose the constraints a freshly drawn shape should get from what its features landed on.
std::vector< ENDPOINT_BINDING > SelectEndpointBindings(BOARD *aBoard, const KIID &aItem, const VECTOR2I &aStart, const std::optional< VECTOR2I > &aEnd, double aMaxDist)
Choose the coincident bindings a freshly drawn item endpoints should take so it tracks the geometry i...
double InitialConstraintValue(PCB_CONSTRAINT_TYPE aType, double aMeasured, const std::map< PCB_CONSTRAINT_TYPE, double > &aRemembered)
Value a freshly authored constraint dialog should open with.
EDA_ANGLE MeasureCornerAngle(const SEG &aA, const SEG &aB)
The corner angle between two segments, in the closed range [0, 180] degrees.
bool DimensionHasValueMode(const PCB_DIMENSION_BASE *aDimension)
True for dimension types with a measured value aligned orthogonal or radial offering the Driven Drivi...
PCB_CONSTRAINT * FindDimensionLengthConstraint(BOARD *aBoard, const PCB_DIMENSION_BASE *aDimension)
Self FIXED_LENGTH constraint whose members are exactly aDimension START and END or nullptr the drivin...
std::vector< CONSTRAINT_ANCHOR_POINT > ConstraintItemAnchors(const BOARD_ITEM *aItem)
The constraint anchors an item exposes.
std::optional< KIID > NearestConstrainedShape(const std::vector< PCB_SHAPE * > &aCandidates, const VECTOR2I &aPos, int aMaxDist)
The candidate shape whose outline aPos hits within aMaxDist, or std::nullopt.
std::optional< CONSTRAINT_ANCHOR_POINT > ConstraintShapeVertex(const PCB_SHAPE *aShape, int aIndex)
VERTEX anchor at ordinal aIndex of a rectangle or eligible polygon or std::nullopt if the shape has n...
wxString ConstraintSelectionHint(PCB_CONSTRAINT_TYPE aType)
A sentence naming what aType needs selected, for the moment a selection does not fit it and the tool ...
std::unique_ptr< PCB_CONSTRAINT > BuildConstraintFromItems(BOARD_ITEM *aParent, PCB_CONSTRAINT_TYPE aType, const std::vector< BOARD_ITEM * > &aItems)
Build a constraint of aType from a set of selected board items, or nullptr if the selection does not ...
std::vector< CONSTRAINT_ANCHOR_POINT > ConstraintShapeAnchors(const PCB_SHAPE *aShape)
Enumerate a shape constraint anchors with positions segment and arc endpoints arc centre circle centr...
std::optional< KIID > NearestOutlineShape(BOARD *aBoard, const VECTOR2I &aPos, double aMaxDist, bool aAllowCircle)
The shape whose outline is nearest aPos within aMaxDist.
std::optional< KIID > SelectRadialDimensionTarget(BOARD *aBoard, const KIID &aDimension, const VECTOR2I &aCenter, const VECTOR2I &aRim, double aMaxDist)
Single circle or arc a radial dimension binds to or std::nullopt.
std::vector< BOARD_ITEM * > CollectConstrainableItems(BOARD *aBoard)
Every constrainable item on a visible layer – shapes plus dimensions – for board-wide anchor picking.
std::optional< VECTOR2I > ConstraintAnchorPosition(BOARD *aBoard, const CONSTRAINT_MEMBER &aMember)
Current location of a constraint member's anchor (its shape's START/END/CENTER, or a dimension's feat...
std::optional< CONSTRAINT_MEMBER > NearestConstraintAnchor(BOARD *aBoard, const VECTOR2I &aPos, double aMaxDist, const std::vector< CONSTRAINT_MEMBER > &aExclude)
Find the constrainable-item anchor (a shape's segment/arc endpoint or centre, or a dimension's featur...
bool DimensionCanDrive(BOARD *aBoard, const PCB_DIMENSION_BASE *aDimension)
True when Driving mode may be offered for aDimension needs both endpoints bound via DimensionEndpoint...
bool ConstraintPolygonIsModelable(const PCB_SHAPE *aShape)
True when polygon has one non empty hole free arc free outline making it solver eligible Shared by ad...
BOARD_ITEM * ResolveConstrainableItem(BOARD *aBoard, const KIID &aId)
The board item a constraint may reference: a PCB_SHAPE or a dimension, or nullptr for anything else (...
bool ConstraintIsDuplicateOnBoard(BOARD *aBoard, const PCB_CONSTRAINT *aConstraint)
True if the board or one of its footprints already carries an equal constraint.
std::optional< CONSTRAINT_MEMBER > NearestAnchorAmong(const std::vector< PCB_SHAPE * > &aShapes, const VECTOR2I &aPos, double aMaxDist)
The {shape, anchor} member nearest aPos within aMaxDist among aShapes, or std::nullopt.
bool DimensionEndpointsBound(BOARD *aBoard, const PCB_DIMENSION_BASE *aDimension)
True when both of aDimension measured endpoints are bound to anchors that still resolve a coincident ...
PCB_CONSTRAINT * SetDimensionValueMode(BOARD *aBoard, PCB_DIMENSION_BASE *aDimension, DIM_VALUE_MODE aMode, std::optional< int > aDrivingLengthIU, const std::optional< wxString > &aOverrideText, const std::function< void(BOARD_ITEM *)> &aBeforeModify, const std::function< void(BOARD_ITEM *)> &aStageAdd, const std::function< void(BOARD_ITEM *)> &aBeforeRemove)
Apply a value mode transition to aDimension Driving creates or updates the driving length with aDrivi...
DIM_VALUE_MODE
Mode a value bearing dimension value is in Driven mirrors measured geometry Driving forces geometry t...
@ RECTANGLE
Use RECTANGLE instead of RECT to avoid collision in a Windows header.
bool contains(const _Container &__container, _Value __value)
Returns true if the container contains the given value.
EDA_ANGLE abs(const EDA_ANGLE &aAngle)
bool ConstraintsAreDuplicate(const PCB_CONSTRAINT &aA, const PCB_CONSTRAINT &aB)
True if two constraints express the same relation, meaning the same type and the same members compare...
wxString ConstraintTypeLabel(PCB_CONSTRAINT_TYPE aType)
Human-readable name of a constraint type (e.g. "Parallel"), for menus and lists.
CONSTRAINT_ANCHOR
Which feature of a referenced board item participates in a constraint.
@ VERTEX
An indexed rectangle corner or polygon outline vertex; pairs with CONSTRAINT_MEMBER::m_index.
@ WHOLE
The item as a whole (a segment as a line, a circle).
@ START
First endpoint of a segment or arc.
@ END
Second endpoint of a segment or arc.
@ CENTER
Center of an arc or circle.
PCB_CONSTRAINT_TYPE
The geometric relationship a PCB_CONSTRAINT enforces between its members.
@ CONCENTRIC
Two arcs/circles share a center.
@ SYMMETRIC
Two points are mirror images about an axis.
@ FIXED_POSITION
A point is locked at its current location.
@ VERTICAL
A segment (or two points) is vertical.
@ TANGENT
A line and a curve, or two curves, touch tangentially.
@ COINCIDENT
Two points are made to coincide.
@ PERPENDICULAR
Two segments are perpendicular.
@ FIXED_RADIUS
An arc/circle has a driving radius value.
@ HORIZONTAL
A segment (or two points) is horizontal.
@ EQUAL_RADIUS
Two arcs/circles have equal radius.
@ MIDPOINT
A point is the midpoint of a segment.
@ POINT_ON_LINE
A point lies on a segment's supporting line.
@ FIXED_LENGTH
A segment has a driving length value.
@ ANGULAR_DIMENSION
An angle between members (driving or reference).
@ COLLINEAR
Two segments lie on the same line.
@ ARC_ANGLE
An arc has a driving or reference swept-angle value.
@ PARALLEL
Two segments are parallel.
@ EQUAL_LENGTH
Two segments have equal length.
std::deque< PCB_CONSTRAINT * > CONSTRAINTS
One constraint chosen for a freshly drawn shape.
std::unique_ptr< PCB_CONSTRAINT > constraint
A selectable feature of a shape (a segment endpoint, arc centre, ...) and its location.
One participant in a constraint: a referenced board item plus the feature of that item that participa...
KIID m_item
Referenced board item, usually a PCB_SHAPE.
CONSTRAINT_ANCHOR m_anchor
Which feature of that item participates.
int m_index
Vertex ordinal; only meaningful for the VERTEX anchor.
One of a drawn item feature points bound coincident to an object anchor by draw time auto constrain s...
wxString result
Test unit parsing edge cases and error handling.
@ PCB_SHAPE_T
class PCB_SHAPE, a segment not on copper layers
@ PCB_DIM_ORTHOGONAL_T
class PCB_DIM_ORTHOGONAL, a linear dimension constrained to x/y
@ PCB_DIM_ALIGNED_T
class PCB_DIM_ALIGNED, a linear dimension (graphic item)
@ PCB_DIM_RADIAL_T
class PCB_DIM_RADIAL, a radius or diameter dimension
VECTOR2< int32_t > VECTOR2I
VECTOR2< double > VECTOR2D