83bool allSegments(
const std::vector<BOARD_ITEM*>& aItems )
85 return std::ranges::all_of( aItems, isSegment );
90bool allRadial(
const std::vector<BOARD_ITEM*>& aItems )
92 return std::ranges::all_of( aItems, isCircleOrArc );
97bool allCentered(
const std::vector<BOARD_ITEM*>& aItems )
99 return std::ranges::all_of( aItems,
102 return isCircleOrArc( aItem ) || isEllipseKind( aItem );
115 SEG::ecoord best = ( aEnds[0] - bEnds[0] ).SquaredEuclideanNorm();
117 for(
int i = 0; i < 2; ++i )
119 for(
int j = 0; j < 2; ++j )
121 SEG::ecoord dist = ( aEnds[i] - bEnds[j] ).SquaredEuclideanNorm();
135 return SEG( aEnds[
vA], aEnds[1 -
vA] ).
Angle(
SEG( bEnds[vB], bEnds[1 - vB] ) );
141 const std::vector<BOARD_ITEM*>& aItems )
144 auto makeWhole = [&]()
146 std::unique_ptr<PCB_CONSTRAINT> c = std::make_unique<PCB_CONSTRAINT>( aParent, aType );
161 if( aItems.size() != 2 || !allSegments( aItems ) )
170 if( aItems.size() != 1 || !isSegment( aItems[0] ) )
178 if( aItems.size() != 1 || !isSegment( aItems[0] ) )
183 std::unique_ptr<PCB_CONSTRAINT> c = makeWhole();
184 c->SetValue( ( seg->
GetEnd() - seg->
GetStart() ).EuclideanNorm() );
190 if( aItems.size() != 2 || !allCentered( aItems ) )
198 if( aItems.size() != 2 || !allRadial( aItems ) )
206 if( aItems.size() != 2 || !allSegments( aItems ) )
217 std::unique_ptr<PCB_CONSTRAINT> c = makeWhole();
225 if( aItems.size() != 1 || !isCircleOrArc( aItems[0] ) )
228 std::unique_ptr<PCB_CONSTRAINT> c = makeWhole();
229 c->SetValue(
static_cast<const PCB_SHAPE*
>( aItems[0] )->GetRadius() );
235 if( aItems.size() != 1 || !isArc( aItems[0] ) )
238 std::unique_ptr<PCB_CONSTRAINT> c = makeWhole();
239 c->SetValue(
static_cast<const PCB_SHAPE*
>( aItems[0] )->GetArcAngle().AsDegrees() );
245 if( aItems.size() != 2 )
253 return isCircleOrArc( aItem ) || isEllipseKind( aItem );
256 bool lineCurve = ( isSegment( a ) && isCurve( b ) ) || ( isSegment( b ) && isCurve( a ) );
257 bool curveCurve = isCircleOrArc( a ) && isCircleOrArc( b );
259 if( !lineCurve && !curveCurve )
285 format =
_(
"%s needs two line segments. Click them to constrain." );
290 format =
_(
"%s needs two line segments of nonzero length. Click them to constrain." );
295 format =
_(
"%s needs one line segment, or two anchor points. Click them to constrain." );
299 format =
_(
"%s needs one line segment. Click it to constrain." );
304 format =
_(
"%s needs two arcs, circles or ellipses. Click them to constrain." );
308 format =
_(
"%s needs two arcs or circles. Click them to constrain." );
312 format =
_(
"%s needs one arc or circle. Click it to constrain." );
316 format =
_(
"%s needs one arc. Click it to constrain." );
321 format =
_(
"%s needs a line and a curve, or two arcs or circles. Click them to constrain." );
331 return wxEmptyString;
340 std::vector<CONSTRAINT_ANCHOR_POINT> anchors;
367 VECTOR2I tl( std::min( s.
x, e.
x ), std::min( s.
y, e.
y ) );
368 VECTOR2I br( std::max( s.
x, e.
x ), std::max( s.
y, e.
y ) );
384 for(
int i = 0; i < outline.
PointCount(); ++i )
385 anchors.push_back( { CONSTRAINT_ANCHOR::VERTEX, outline.CPoint( i ), i } );
414 if( !aShape || aIndex < 0 )
422 if( aIndex >= (
int) anchors.size() )
425 return anchors[aIndex];
430 const VECTOR2I& aPos,
double aMaxDist )
432 double best = aMaxDist;
433 std::optional<CONSTRAINT_MEMBER>
result;
439 double dist = ( a.pos - aPos ).EuclideanNorm();
455 std::vector<PCB_SHAPE*> shapes;
461 [&](
const auto& aContainer )
466 shape && aBoard->
IsLayerVisible( shape->GetLayer() ) && layerMatches( shape, aLayer ) )
468 shapes.push_back( shape );
476 collect( footprint->GraphicalItems() );
484 std::vector<BOARD_ITEM*> items;
490 [&](
const auto& aContainer )
495 && aBoard->
IsLayerVisible( item->GetLayer() ) && layerMatches( item, aLayer ) )
497 items.push_back( item );
505 collect( footprint->GraphicalItems() );
513 const std::vector<CONSTRAINT_MEMBER>& aExclude,
516 double best = aMaxDist;
517 std::optional<CONSTRAINT_MEMBER>
result;
529 double dist = ( a.pos - aPos ).EuclideanNorm();
544 const std::optional<VECTOR2I>& aEnd,
double aMaxDist,
547 std::vector<ENDPOINT_BINDING> bindings;
554 using ANCHOR_PAIR = std::pair<CONSTRAINT_MEMBER, CONSTRAINT_MEMBER>;
556 auto bestPairOn = [&](
BOARD_ITEM* aCandidate ) -> std::optional<std::pair<ANCHOR_PAIR, double>>
562 const size_t none = anchors.size();
563 size_t bestEnd = none;
564 size_t secondEnd = none;
565 std::vector<double> dEnd( anchors.size(), 0.0 );
567 for(
size_t j = 0; j < anchors.size(); ++j )
569 dEnd[j] = ( anchors[j].pos - *aEnd ).EuclideanNorm();
571 if( dEnd[j] > aMaxDist )
574 if( bestEnd == none || dEnd[j] < dEnd[bestEnd] )
579 else if( secondEnd == none || dEnd[j] < dEnd[secondEnd] )
585 if( bestEnd == none )
588 std::optional<std::pair<ANCHOR_PAIR, double>> best;
590 for(
size_t i = 0; i < anchors.size(); ++i )
592 double dStart = ( anchors[i].pos - aStart ).EuclideanNorm();
594 if( dStart > aMaxDist )
597 size_t j = ( i == bestEnd ) ? secondEnd : bestEnd;
602 double sum = dStart + dEnd[j];
604 if( !best || sum < best->second )
606 best = std::make_pair(
607 ANCHOR_PAIR{
CONSTRAINT_MEMBER( aCandidate->m_Uuid, anchors[i].anchor, anchors[i].index ),
620 std::optional<ANCHOR_PAIR> bestPair;
621 double bestSum = 0.0;
625 if( item->m_Uuid == aItem )
628 auto pair = bestPairOn( item );
633 if( !bestPair || pair->second < bestSum )
635 bestSum = pair->second;
636 bestPair = pair->first;
655 exclude.push_back( *startTarget );
684 double best = aMaxDist;
685 std::optional<KIID>
result;
689 const SHAPE_T shapeType = shape->GetShape();
694 dist =
SEG( shape->GetStart(), shape->GetEnd() ).
Distance( aPos );
698 dist =
std::abs( ( aPos - shape->GetCenter() ).EuclideanNorm() - shape->GetRadius() );
704 double a = shape->GetEllipseMajorRadius();
705 double b = shape->GetEllipseMinorRadius();
706 double phi = shape->GetEllipseRotation().AsRadians();
708 double lx = d.
x * std::cos( phi ) + d.
y * std::sin( phi );
709 double ly = -d.
x * std::sin( phi ) + d.
y * std::cos( phi );
710 double r = std::hypot( lx, ly );
712 if( a <= 0 || b <= 0 )
715 double theta = std::atan2( ly, lx );
716 double re = a * b / std::hypot( b * std::cos( theta ), a * std::sin( theta ) );
746 std::vector<CONSTRAINT_ANCHOR_POINT> anchors;
751 switch( aItem->
Type() )
787 const std::map<PCB_CONSTRAINT_TYPE, double>& aRemembered )
789 auto it = aRemembered.find( aType );
791 return it != aRemembered.end() ? it->second : aMeasured;
796 const VECTOR2I& aPos,
int aMaxDist )
798 auto it = std::ranges::find_if( aCandidates,
801 return aShape && aShape->
HitTest( aPos, aMaxDist );
804 return it == aCandidates.end() ? std::nullopt : std::optional<KIID>( ( *it )->m_Uuid );
815 std::optional<KIID> best;
816 double bestErr = 0.0;
820 if( shape->m_Uuid == aDimension || !isCircleOrArc( shape ) )
825 std::optional<VECTOR2I> centerPos;
836 double centerErr = ( *centerPos - aCenter ).EuclideanNorm();
838 if( centerErr > aMaxDist )
841 double rimErr =
std::abs( ( aRim - *centerPos ).EuclideanNorm() - shape->GetRadius() );
843 if( rimErr > aMaxDist )
851 double err = centerErr + rimErr;
853 if( !best || err < bestErr )
856 best = shape->m_Uuid;
866 if( !aBoard || !aDimension )
872 auto anyConstraint = [&](
const auto& aMatch )
874 if( std::ranges::any_of( aBoard->
Constraints(), aMatch ) )
879 return std::ranges::any_of( aBoard->
Footprints(),
881 { return std::ranges::any_of( aFootprint->Constraints(), aMatch ); } );
888 auto rimOnItem = [&](
const KIID& aItem )
890 return anyConstraint(
898 const std::vector<CONSTRAINT_MEMBER>& members = aConstraint->
GetMembers();
900 return members.size() == 2 && members[0] == endMember
905 return anyConstraint(
911 const std::vector<CONSTRAINT_MEMBER>& members = aConstraint->
GetMembers();
913 if( members.size() != 2 )
919 if( members[0] == startMember )
920 target = &members[1];
921 else if( members[1] == startMember )
922 target = &members[0];
929 return item && isCircleOrArc( item ) && rimOnItem( target->
m_item );
937 return anyConstraint(
943 const std::vector<CONSTRAINT_MEMBER>& members = aConstraint->
GetMembers();
946 if( members.size() != 2 || members[0].m_item == members[1].m_item )
949 if( members[0] == aMember )
952 return members[1] == aMember
957 return hasCoincident( startMember ) && hasCoincident( endMember );
966 switch( aDimension->
Type() )
981 if( !aBoard || !aDimension )
992 const std::vector<CONSTRAINT_MEMBER>& members = aConstraint->GetMembers();
994 return members.size() == 2
995 && ( ( members[0] == startMember && members[1] == endMember )
996 || ( members[0] == endMember && members[1] == startMember ) );
1001 auto it = std::ranges::find_if( aList, matches );
1002 return it != aList.end() ? *it :
nullptr;
1030 return existing && existing->
IsDriving();
1038 if( lengthConstraint && lengthConstraint->
IsDriving() )
1049 std::optional<int> aDrivingLengthIU,
1050 const std::optional<wxString>& aOverrideText,
1051 const std::function<
void(
BOARD_ITEM* )>& aBeforeModify,
1052 const std::function<
void(
BOARD_ITEM* )>& aStageAdd,
1053 const std::function<
void(
BOARD_ITEM* )>& aBeforeRemove )
1064 if( !aDrivingLengthIU || *aDrivingLengthIU <= 0 || !
DimensionCanDrive( aBoard, aDimension ) )
1067 aBeforeModify( aDimension );
1073 aBeforeModify( existing );
1074 existing->
SetValue( *aDrivingLengthIU );
1086 constraint->SetValue( *aDrivingLengthIU );
1087 constraint->SetDriving(
true );
1090 aStageAdd( constraint.release() );
1094 aBeforeModify( aDimension );
1104 aBeforeRemove( existing );
1111 const std::function<
void(
BOARD_ITEM* )>& aBeforeModify,
1112 const std::function<
void(
BOARD_ITEM* )>& aBeforeRemove )
1114 if( !aBoard || aDelta == 0 )
1117 auto remapIn = [&](
const CONSTRAINTS& aConstraints )
1121 bool shifts =
false;
1122 bool doomed =
false;
1129 if( aDelta < 0 && member.m_index == aChangedIndex )
1131 else if( member.m_index >= aChangedIndex )
1140 aBeforeRemove( constraint );
1147 aBeforeModify( constraint );
1152 && member.m_index >= aChangedIndex )
1154 member.m_index += aDelta;
1163 remapIn( footprint->Constraints() );
1171 return std::ranges::any_of( aList,
1181 return std::ranges::any_of( aBoard->
Footprints(),
1184 return scan( aFootprint->Constraints() );
1193constexpr double AUTO_BIND_TOL_MM = 0.01;
1194constexpr double AUTO_CORRIDOR_MM = 0.25;
1195constexpr double AUTO_TANGENT_TOL_DEG = 10.0;
1199std::optional<double> tangentDirAt(
const PCB_SHAPE* aShape,
const VECTOR2I& aPos )
1207 if( dir.EuclideanNorm() == 0 )
1208 return std::nullopt;
1210 return std::atan2( dir.y, dir.x );
1218 if( radial.EuclideanNorm() == 0 )
1219 return std::nullopt;
1221 return std::atan2( radial.y, radial.x ) +
M_PI / 2;
1224 default:
return std::nullopt;
1234 const double tangentTol = AUTO_TANGENT_TOL_DEG *
M_PI / 180.0;
1239 if( !curveInvolved )
1242 std::optional<double> myDir = tangentDirAt( aShape, aPos );
1243 std::optional<double> otherDir = tangentDirAt( aTarget, aPos );
1245 if( !myDir || !otherDir )
1248 double diff = std::fabs( std::fmod( *myDir - *otherDir,
M_PI ) );
1249 diff = std::min( diff,
M_PI - diff );
1251 if( diff > tangentTol )
1264void addUnlessDuplicate(
BOARD* aBoard, std::vector<AUTO_CONSTRAINT>& aResult,
1265 std::unique_ptr<PCB_CONSTRAINT> aConstraint,
bool aNeedsSolve )
1270 if( std::ranges::any_of( aResult,
1279 aResult.push_back( { std::move( aConstraint ), aNeedsSolve } );
1287 std::vector<AUTO_CONSTRAINT>
result;
1289 const double tol =
pcbIUScale.mmToIU( AUTO_BIND_TOL_MM );
1294 if( std::optional<CONSTRAINT_MEMBER> target =
1297 std::unique_ptr<PCB_CONSTRAINT> constraint;
1309 constraint->AddMember( target->m_item, target->m_anchor, target->m_index );
1312 addUnlessDuplicate( aBoard,
result, std::move( constraint ),
false );
1316 if( *outline != aShape->
m_Uuid )
1322 addUnlessDuplicate( aBoard,
result, std::move( constraint ),
false );
1332 std::vector<AUTO_CONSTRAINT>& aResult, std::set<CONSTRAINT_ANCHOR>& aBound,
1333 std::vector<std::pair<VECTOR2I, KIID>>& aTouches )
1335 const double tol =
pcbIUScale.mmToIU( AUTO_BIND_TOL_MM );
1343 constraint->AddMember( aShape->
m_Uuid, binding.sourceAnchor );
1344 constraint->AddMember( binding.target.m_item, binding.target.m_anchor, binding.target.m_index );
1346 aBound.insert( binding.sourceAnchor );
1349 aTouches.emplace_back( pos, binding.target.m_item );
1351 addUnlessDuplicate( aBoard, aResult, std::move( constraint ),
false );
1359 std::vector<AUTO_CONSTRAINT>& aResult,
const std::set<CONSTRAINT_ANCHOR>& aBound,
1360 std::vector<std::pair<VECTOR2I, KIID>>& aTouches )
1362 const double tol =
pcbIUScale.mmToIU( AUTO_BIND_TOL_MM );
1366 if( aBound.contains(
anchor ) )
1372 if( !target || *target == aShape->
m_Uuid )
1382 if( ( pos - mid ).EuclideanNorm() <= tol )
1386 auto constraint = std::make_unique<PCB_CONSTRAINT>( aParent, type );
1390 aTouches.emplace_back( pos, *target );
1392 addUnlessDuplicate( aBoard, aResult, std::move( constraint ),
false );
1400 std::vector<AUTO_CONSTRAINT>& aResult )
1405 const double tol =
pcbIUScale.mmToIU( AUTO_BIND_TOL_MM );
1406 const double corridor =
pcbIUScale.mmToIU( AUTO_CORRIDOR_MM );
1409 std::vector<VECTOR2I> boundPos;
1418 if( span.Distance(
anchor.pos ) > corridor )
1422 if( (
anchor.pos - aShape->
GetStart() ).EuclideanNorm() <= corridor
1423 || (
anchor.pos - aShape->
GetEnd() ).EuclideanNorm() <= corridor )
1429 if( std::ranges::any_of( boundPos,
1432 return (
anchor.pos - aP ).EuclideanNorm() <= tol;
1438 boundPos.push_back(
anchor.pos );
1441 constraint->AddMember( item->m_Uuid,
anchor.anchor,
anchor.index );
1444 addUnlessDuplicate( aBoard, aResult, std::move( constraint ),
true );
1451void selectTangents(
BOARD* aBoard,
const PCB_SHAPE* aShape,
BOARD_ITEM* aParent, std::vector<AUTO_CONSTRAINT>& aResult,
1452 const std::vector<std::pair<VECTOR2I, KIID>>& aTouches )
1454 for(
const auto& [pos,
id] : aTouches )
1458 if( target && target != aShape )
1460 if( std::unique_ptr<PCB_CONSTRAINT> tangent = makeTangent( aShape, target, pos, aParent ) )
1461 addUnlessDuplicate( aBoard, aResult, std::move( tangent ),
true );
1469 std::vector<AUTO_CONSTRAINT>& aResult )
1477 if( !horizontal && !vertical )
1484 addUnlessDuplicate( aBoard, aResult, std::move( constraint ),
false );
1490 bool aAxisConstraint )
1492 std::vector<AUTO_CONSTRAINT>
result;
1494 if( !aBoard || !aShape )
1498 return selectCenterBindings( aBoard, aShape, aParent );
1500 std::set<CONSTRAINT_ANCHOR> bound;
1501 std::vector<std::pair<VECTOR2I, KIID>> touches;
1503 selectEndpointCoincidents( aBoard, aShape, aParent,
result, bound, touches );
1504 selectOutlineFallbacks( aBoard, aShape, aParent,
result, bound, touches );
1505 selectCorridorPins( aBoard, aShape, aParent,
result );
1506 selectTangents( aBoard, aShape, aParent,
result, touches );
1508 if( aAxisConstraint )
1509 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...
virtual bool IsOnLayer(PCB_LAYER_ID aLayer) const
Test to see if this object is on the given layer.
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.
PCB_LAYER_ID GetLayer() const override
Return the primary layer this item is on.
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< 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.
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::vector< BOARD_ITEM * > CollectConstrainableItems(BOARD *aBoard, PCB_LAYER_ID aLayer)
Every constrainable item on a visible layer – shapes plus dimensions – for board-wide anchor picking.
std::vector< PCB_SHAPE * > CollectConstraintShapes(BOARD *aBoard, PCB_LAYER_ID aLayer)
Every PCB_SHAPE on a visible layer (drawings plus footprint graphics) – the candidates constraints ca...
std::optional< KIID > NearestOutlineShape(BOARD *aBoard, const VECTOR2I &aPos, double aMaxDist, bool aAllowCircle, PCB_LAYER_ID aLayer)
The shape whose outline is nearest aPos within aMaxDist.
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< CONSTRAINT_MEMBER > NearestConstraintAnchor(BOARD *aBoard, const VECTOR2I &aPos, double aMaxDist, const std::vector< CONSTRAINT_MEMBER > &aExclude, PCB_LAYER_ID aLayer)
Find the constrainable-item anchor (a shape's segment/arc endpoint or centre, or a dimension's featur...
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::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::vector< ENDPOINT_BINDING > SelectEndpointBindings(BOARD *aBoard, const KIID &aItem, const VECTOR2I &aStart, const std::optional< VECTOR2I > &aEnd, double aMaxDist, PCB_LAYER_ID aLayer)
Choose the coincident bindings a freshly drawn item endpoints should take so it tracks the geometry i...
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.
PCB_LAYER_ID
A quick note on layer IDs:
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