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;
455 shapes.push_back( shape );
460 for(
BOARD_ITEM* item : footprint->GraphicalItems() )
463 shapes.push_back( shape );
473 std::vector<BOARD_ITEM*> items;
479 [&](
const auto& aContainer )
484 items.push_back( item );
491 collect( footprint->GraphicalItems() );
499 const std::vector<CONSTRAINT_MEMBER>& aExclude )
501 double best = aMaxDist;
502 std::optional<CONSTRAINT_MEMBER>
result;
514 double dist = ( a.pos - aPos ).EuclideanNorm();
529 const std::optional<VECTOR2I>& aEnd,
double aMaxDist )
531 std::vector<ENDPOINT_BINDING> bindings;
538 using ANCHOR_PAIR = std::pair<CONSTRAINT_MEMBER, CONSTRAINT_MEMBER>;
540 auto bestPairOn = [&](
BOARD_ITEM* aCandidate ) -> std::optional<std::pair<ANCHOR_PAIR, double>>
546 const size_t none = anchors.size();
547 size_t bestEnd = none;
548 size_t secondEnd = none;
549 std::vector<double> dEnd( anchors.size(), 0.0 );
551 for(
size_t j = 0; j < anchors.size(); ++j )
553 dEnd[j] = ( anchors[j].pos - *aEnd ).EuclideanNorm();
555 if( dEnd[j] > aMaxDist )
558 if( bestEnd == none || dEnd[j] < dEnd[bestEnd] )
563 else if( secondEnd == none || dEnd[j] < dEnd[secondEnd] )
569 if( bestEnd == none )
572 std::optional<std::pair<ANCHOR_PAIR, double>> best;
574 for(
size_t i = 0; i < anchors.size(); ++i )
576 double dStart = ( anchors[i].pos - aStart ).EuclideanNorm();
578 if( dStart > aMaxDist )
581 size_t j = ( i == bestEnd ) ? secondEnd : bestEnd;
586 double sum = dStart + dEnd[j];
588 if( !best || sum < best->second )
590 best = std::make_pair(
591 ANCHOR_PAIR{
CONSTRAINT_MEMBER( aCandidate->m_Uuid, anchors[i].anchor, anchors[i].index ),
604 std::optional<ANCHOR_PAIR> bestPair;
605 double bestSum = 0.0;
609 if( item->m_Uuid == aItem )
612 auto pair = bestPairOn( item );
617 if( !bestPair || pair->second < bestSum )
619 bestSum = pair->second;
620 bestPair = pair->first;
639 exclude.push_back( *startTarget );
667 double best = aMaxDist;
668 std::optional<KIID>
result;
672 const SHAPE_T shapeType = shape->GetShape();
677 dist =
SEG( shape->GetStart(), shape->GetEnd() ).
Distance( aPos );
681 dist =
std::abs( ( aPos - shape->GetCenter() ).EuclideanNorm() - shape->GetRadius() );
687 double a = shape->GetEllipseMajorRadius();
688 double b = shape->GetEllipseMinorRadius();
689 double phi = shape->GetEllipseRotation().AsRadians();
691 double lx = d.
x * std::cos( phi ) + d.
y * std::sin( phi );
692 double ly = -d.
x * std::sin( phi ) + d.
y * std::cos( phi );
693 double r = std::hypot( lx, ly );
695 if( a <= 0 || b <= 0 )
698 double theta = std::atan2( ly, lx );
699 double re = a * b / std::hypot( b * std::cos( theta ), a * std::sin( theta ) );
729 std::vector<CONSTRAINT_ANCHOR_POINT> anchors;
734 switch( aItem->
Type() )
770 const std::map<PCB_CONSTRAINT_TYPE, double>& aRemembered )
772 auto it = aRemembered.find( aType );
774 return it != aRemembered.end() ? it->second : aMeasured;
779 const VECTOR2I& aPos,
int aMaxDist )
781 auto it = std::ranges::find_if( aCandidates,
784 return aShape && aShape->
HitTest( aPos, aMaxDist );
787 return it == aCandidates.end() ? std::nullopt : std::optional<KIID>( ( *it )->m_Uuid );
798 std::optional<KIID> best;
799 double bestErr = 0.0;
803 if( shape->m_Uuid == aDimension || !isCircleOrArc( shape ) )
808 std::optional<VECTOR2I> centerPos;
819 double centerErr = ( *centerPos - aCenter ).EuclideanNorm();
821 if( centerErr > aMaxDist )
824 double rimErr =
std::abs( ( aRim - *centerPos ).EuclideanNorm() - shape->GetRadius() );
826 if( rimErr > aMaxDist )
834 double err = centerErr + rimErr;
836 if( !best || err < bestErr )
839 best = shape->m_Uuid;
849 if( !aBoard || !aDimension )
855 auto anyConstraint = [&](
const auto& aMatch )
857 if( std::ranges::any_of( aBoard->
Constraints(), aMatch ) )
862 return std::ranges::any_of( aBoard->
Footprints(),
864 { return std::ranges::any_of( aFootprint->Constraints(), aMatch ); } );
871 auto rimOnItem = [&](
const KIID& aItem )
873 return anyConstraint(
881 const std::vector<CONSTRAINT_MEMBER>& members = aConstraint->
GetMembers();
883 return members.size() == 2 && members[0] == endMember
888 return anyConstraint(
894 const std::vector<CONSTRAINT_MEMBER>& members = aConstraint->
GetMembers();
896 if( members.size() != 2 )
902 if( members[0] == startMember )
903 target = &members[1];
904 else if( members[1] == startMember )
905 target = &members[0];
912 return item && isCircleOrArc( item ) && rimOnItem( target->
m_item );
920 return anyConstraint(
926 const std::vector<CONSTRAINT_MEMBER>& members = aConstraint->
GetMembers();
929 if( members.size() != 2 || members[0].m_item == members[1].m_item )
932 if( members[0] == aMember )
935 return members[1] == aMember
940 return hasCoincident( startMember ) && hasCoincident( endMember );
949 switch( aDimension->
Type() )
964 if( !aBoard || !aDimension )
975 const std::vector<CONSTRAINT_MEMBER>& members = aConstraint->GetMembers();
977 return members.size() == 2
978 && ( ( members[0] == startMember && members[1] == endMember )
979 || ( members[0] == endMember && members[1] == startMember ) );
984 auto it = std::ranges::find_if( aList, matches );
985 return it != aList.end() ? *it :
nullptr;
1013 return existing && existing->
IsDriving();
1021 if( lengthConstraint && lengthConstraint->
IsDriving() )
1032 std::optional<int> aDrivingLengthIU,
1033 const std::optional<wxString>& aOverrideText,
1034 const std::function<
void(
BOARD_ITEM* )>& aBeforeModify,
1035 const std::function<
void(
BOARD_ITEM* )>& aStageAdd,
1036 const std::function<
void(
BOARD_ITEM* )>& aBeforeRemove )
1047 if( !aDrivingLengthIU || *aDrivingLengthIU <= 0 || !
DimensionCanDrive( aBoard, aDimension ) )
1050 aBeforeModify( aDimension );
1056 aBeforeModify( existing );
1057 existing->
SetValue( *aDrivingLengthIU );
1069 constraint->SetValue( *aDrivingLengthIU );
1070 constraint->SetDriving(
true );
1073 aStageAdd( constraint.release() );
1077 aBeforeModify( aDimension );
1087 aBeforeRemove( existing );
1094 const std::function<
void(
BOARD_ITEM* )>& aBeforeModify,
1095 const std::function<
void(
BOARD_ITEM* )>& aBeforeRemove )
1097 if( !aBoard || aDelta == 0 )
1100 auto remapIn = [&](
const CONSTRAINTS& aConstraints )
1104 bool shifts =
false;
1105 bool doomed =
false;
1112 if( aDelta < 0 && member.m_index == aChangedIndex )
1114 else if( member.m_index >= aChangedIndex )
1123 aBeforeRemove( constraint );
1130 aBeforeModify( constraint );
1135 && member.m_index >= aChangedIndex )
1137 member.m_index += aDelta;
1146 remapIn( footprint->Constraints() );
1154 return std::ranges::any_of( aList,
1164 return std::ranges::any_of( aBoard->
Footprints(),
1167 return scan( aFootprint->Constraints() );
1176constexpr double AUTO_BIND_TOL_MM = 0.01;
1177constexpr double AUTO_CORRIDOR_MM = 0.25;
1178constexpr double AUTO_TANGENT_TOL_DEG = 10.0;
1182std::optional<double> tangentDirAt(
const PCB_SHAPE* aShape,
const VECTOR2I& aPos )
1190 if( dir.EuclideanNorm() == 0 )
1191 return std::nullopt;
1193 return std::atan2( dir.y, dir.x );
1201 if( radial.EuclideanNorm() == 0 )
1202 return std::nullopt;
1204 return std::atan2( radial.y, radial.x ) +
M_PI / 2;
1207 default:
return std::nullopt;
1217 const double tangentTol = AUTO_TANGENT_TOL_DEG *
M_PI / 180.0;
1222 if( !curveInvolved )
1225 std::optional<double> myDir = tangentDirAt( aShape, aPos );
1226 std::optional<double> otherDir = tangentDirAt( aTarget, aPos );
1228 if( !myDir || !otherDir )
1231 double diff = std::fabs( std::fmod( *myDir - *otherDir,
M_PI ) );
1232 diff = std::min( diff,
M_PI - diff );
1234 if( diff > tangentTol )
1247void addUnlessDuplicate(
BOARD* aBoard, std::vector<AUTO_CONSTRAINT>& aResult,
1248 std::unique_ptr<PCB_CONSTRAINT> aConstraint,
bool aNeedsSolve )
1253 if( std::ranges::any_of( aResult,
1262 aResult.push_back( { std::move( aConstraint ), aNeedsSolve } );
1270 std::vector<AUTO_CONSTRAINT>
result;
1272 const double tol =
pcbIUScale.mmToIU( AUTO_BIND_TOL_MM );
1279 std::unique_ptr<PCB_CONSTRAINT> constraint;
1291 constraint->AddMember( target->m_item, target->m_anchor, target->m_index );
1294 addUnlessDuplicate( aBoard,
result, std::move( constraint ),
false );
1298 if( *outline != aShape->
m_Uuid )
1304 addUnlessDuplicate( aBoard,
result, std::move( constraint ),
false );
1314 std::vector<AUTO_CONSTRAINT>& aResult, std::set<CONSTRAINT_ANCHOR>& aBound,
1315 std::vector<std::pair<VECTOR2I, KIID>>& aTouches )
1317 const double tol =
pcbIUScale.mmToIU( AUTO_BIND_TOL_MM );
1319 std::vector<ENDPOINT_BINDING> bindings =
1325 constraint->AddMember( aShape->
m_Uuid, binding.sourceAnchor );
1326 constraint->AddMember( binding.target.m_item, binding.target.m_anchor, binding.target.m_index );
1328 aBound.insert( binding.sourceAnchor );
1331 aTouches.emplace_back( pos, binding.target.m_item );
1333 addUnlessDuplicate( aBoard, aResult, std::move( constraint ),
false );
1341 std::vector<AUTO_CONSTRAINT>& aResult,
const std::set<CONSTRAINT_ANCHOR>& aBound,
1342 std::vector<std::pair<VECTOR2I, KIID>>& aTouches )
1344 const double tol =
pcbIUScale.mmToIU( AUTO_BIND_TOL_MM );
1348 if( aBound.contains(
anchor ) )
1354 if( !target || *target == aShape->
m_Uuid )
1364 if( ( pos - mid ).EuclideanNorm() <= tol )
1368 auto constraint = std::make_unique<PCB_CONSTRAINT>( aParent, type );
1372 aTouches.emplace_back( pos, *target );
1374 addUnlessDuplicate( aBoard, aResult, std::move( constraint ),
false );
1382 std::vector<AUTO_CONSTRAINT>& aResult )
1387 const double tol =
pcbIUScale.mmToIU( AUTO_BIND_TOL_MM );
1388 const double corridor =
pcbIUScale.mmToIU( AUTO_CORRIDOR_MM );
1391 std::vector<VECTOR2I> boundPos;
1400 if( span.Distance(
anchor.pos ) > corridor )
1404 if( (
anchor.pos - aShape->
GetStart() ).EuclideanNorm() <= corridor
1405 || (
anchor.pos - aShape->
GetEnd() ).EuclideanNorm() <= corridor )
1411 if( std::ranges::any_of( boundPos,
1414 return (
anchor.pos - aP ).EuclideanNorm() <= tol;
1420 boundPos.push_back(
anchor.pos );
1423 constraint->AddMember( item->m_Uuid,
anchor.anchor,
anchor.index );
1426 addUnlessDuplicate( aBoard, aResult, std::move( constraint ),
true );
1433void selectTangents(
BOARD* aBoard,
const PCB_SHAPE* aShape,
BOARD_ITEM* aParent, std::vector<AUTO_CONSTRAINT>& aResult,
1434 const std::vector<std::pair<VECTOR2I, KIID>>& aTouches )
1436 for(
const auto& [pos,
id] : aTouches )
1440 if( target && target != aShape )
1442 if( std::unique_ptr<PCB_CONSTRAINT> tangent = makeTangent( aShape, target, pos, aParent ) )
1443 addUnlessDuplicate( aBoard, aResult, std::move( tangent ),
true );
1451 std::vector<AUTO_CONSTRAINT>& aResult )
1459 if( !horizontal && !vertical )
1466 addUnlessDuplicate( aBoard, aResult, std::move( constraint ),
false );
1472 bool aAxisConstraint )
1474 std::vector<AUTO_CONSTRAINT>
result;
1476 if( !aBoard || !aShape )
1480 return selectCenterBindings( aBoard, aShape, aParent );
1482 std::set<CONSTRAINT_ANCHOR> bound;
1483 std::vector<std::pair<VECTOR2I, KIID>> touches;
1485 selectEndpointCoincidents( aBoard, aShape, aParent,
result, bound, touches );
1486 selectOutlineFallbacks( aBoard, aShape, aParent,
result, bound, touches );
1487 selectCorridorPins( aBoard, aShape, aParent,
result );
1488 selectTangents( aBoard, aShape, aParent,
result, touches );
1490 if( aAxisConstraint )
1491 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.
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 the board (drawings plus footprint graphics) – the candidates constraints can refe...
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 the board – 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