KiCad PCB EDA Suite
Loading...
Searching...
No Matches
shape_arc.cpp
Go to the documentation of this file.
1/*
2 * This program source code file is part of KiCad, a free EDA CAD application.
3 *
4 * Copyright (C) 2017 CERN
5 * Copyright (C) 2019-2022 KiCad Developers, see AUTHORS.txt for contributors.
6 * @author Tomasz Wlostowski <[email protected]>
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version 2
11 * of the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, you may find one here:
20 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
21 * or you may search the http://www.gnu.org website for the version 2 license,
22 * or you may write to the Free Software Foundation, Inc.,
23 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
24 */
25
26#include <core/kicad_algo.h>
27#include <geometry/circle.h>
29#include <geometry/seg.h> // for SEG
30#include <geometry/shape_arc.h>
33#include <trigo.h>
34
35
36std::ostream& operator<<( std::ostream& aStream, const SHAPE_ARC& aArc )
37{
38 aStream << "Arc( P0=" << aArc.GetP0() << " P1=" << aArc.GetP1() << " Mid=" << aArc.GetArcMid()
39 << " Width=" << aArc.GetWidth() << " )";
40 return aStream;
41}
42
43
44SHAPE_ARC::SHAPE_ARC( const VECTOR2I& aArcCenter, const VECTOR2I& aArcStartPoint,
45 const EDA_ANGLE& aCenterAngle, int aWidth ) :
46 SHAPE( SH_ARC ),
47 m_width( aWidth )
48{
49 m_start = aArcStartPoint;
50
51 VECTOR2D mid = aArcStartPoint;
52 VECTOR2D end = aArcStartPoint;
53 VECTOR2D center = aArcCenter;
54
55 RotatePoint( mid, center, -aCenterAngle / 2.0 );
56 RotatePoint( end, center, -aCenterAngle );
57
58 m_mid = VECTOR2I( KiROUND( mid.x ), KiROUND( mid.y ) );
59 m_end = VECTOR2I( KiROUND( end.x ), KiROUND( end.y ) );
60
62}
63
64
65SHAPE_ARC::SHAPE_ARC( const VECTOR2I& aArcStart, const VECTOR2I& aArcMid,
66 const VECTOR2I& aArcEnd, int aWidth ) :
67 SHAPE( SH_ARC ),
68 m_start( aArcStart ),
69 m_mid( aArcMid ),
70 m_end( aArcEnd ),
71 m_width( aWidth )
72{
74}
75
76
77SHAPE_ARC::SHAPE_ARC( const SEG& aSegmentA, const SEG& aSegmentB, int aRadius, int aWidth ) :
78 SHAPE( SH_ARC )
79{
80 m_width = aWidth;
81
82 /*
83 * Construct an arc that is tangent to two segments with a given radius.
84 *
85 * p
86 * A
87 * A \
88 * / \
89 * / . . \ segB
90 * /. .\
91 * segA / c \
92 * / B
93 * /
94 * /
95 * B
96 *
97 *
98 * segA is the fist segment (with its points A and B)
99 * segB is the second segment (with its points A and B)
100 * p is the point at which segA and segB would intersect if they were projected
101 * c is the centre of the arc to be constructed
102 * rad is the radius of the arc to be constructed
103 *
104 * We can create two vectors, between point p and segA /segB
105 * pToA = p - segA.B //< note that segA.A would also be valid as it is colinear
106 * pToB = p - segB.B //< note that segB.A would also be valid as it is colinear
107 *
108 * Let the angle formed by segA and segB be called 'alpha':
109 * alpha = angle( pToA ) - angle( pToB )
110 *
111 * The distance PC can be computed as
112 * distPC = rad / abs( sin( alpha / 2 ) )
113 *
114 * The polar angle of the vector PC can be computed as:
115 * anglePC = angle( pToA ) + alpha / 2
116 *
117 * Therefore:
118 * C.x = P.x + distPC*cos( anglePC )
119 * C.y = P.y + distPC*sin( anglePC )
120 */
121
122 OPT_VECTOR2I p = aSegmentA.Intersect( aSegmentB, true, true );
123
124 if( !p || aSegmentA.Length() == 0 || aSegmentB.Length() == 0 )
125 {
126 // Catch bugs in debug
127 wxASSERT_MSG( false, "The input segments do not intersect or one is zero length." );
128
129 // Make a 180 degree arc around aSegmentA in case we end up here in release
130 m_start = aSegmentA.A;
131 m_end = aSegmentA.B;
132 m_mid = m_start;
133
134 VECTOR2I arcCenter = aSegmentA.Center();
135 RotatePoint( m_mid, arcCenter, ANGLE_90 ); // mid point at 90 degrees
136 }
137 else
138 {
139 VECTOR2I pToA = aSegmentA.B - *p;
140 VECTOR2I pToB = aSegmentB.B - *p;
141
142 if( pToA.EuclideanNorm() == 0 )
143 pToA = aSegmentA.A - *p;
144
145 if( pToB.EuclideanNorm() == 0 )
146 pToB = aSegmentB.A - *p;
147
148 EDA_ANGLE pToAangle( pToA );
149 EDA_ANGLE pToBangle( pToB );
150
151 EDA_ANGLE alpha = ( pToAangle - pToBangle ).Normalize180();
152
153 double distPC = (double) aRadius / abs( sin( alpha.AsRadians() / 2 ) );
154 EDA_ANGLE angPC = pToAangle - alpha / 2;
155 VECTOR2I arcCenter;
156
157 arcCenter.x = p->x + KiROUND( distPC * angPC.Cos() );
158 arcCenter.y = p->y + KiROUND( distPC * angPC.Sin() );
159
160 // The end points of the arc are the orthogonal projected lines from the line segments
161 // to the center of the arc
162 m_start = aSegmentA.LineProject( arcCenter );
163 m_end = aSegmentB.LineProject( arcCenter );
164
165 //The mid point is rotated start point around center, half the angle of the arc.
166 VECTOR2I startVector = m_start - arcCenter;
167 VECTOR2I endVector = m_end - arcCenter;
168
169 EDA_ANGLE startAngle( startVector );
170 EDA_ANGLE endAngle( endVector );
171 EDA_ANGLE midPointRotAngle = ( startAngle - endAngle ).Normalize180() / 2;
172
173 m_mid = m_start;
174 RotatePoint( m_mid, arcCenter, midPointRotAngle );
175 }
176
177 update_bbox();
178}
179
180
182 : SHAPE( SH_ARC )
183{
184 m_start = aOther.m_start;
185 m_end = aOther.m_end;
186 m_mid = aOther.m_mid;
187 m_width = aOther.m_width;
188 m_bbox = aOther.m_bbox;
189}
190
191
193 const EDA_ANGLE& aAngle, double aWidth )
194{
195 m_start = aStart;
196 m_mid = aStart;
197 m_end = aEnd;
198 m_width = aWidth;
199
200 VECTOR2I center( CalcArcCenter( aStart, aEnd, aAngle ) );
201
202 RotatePoint( m_mid, center, -aAngle / 2.0 );
203
204 update_bbox();
205
206 return *this;
207}
208
209
211 const VECTOR2I& aCenter, bool aClockwise,
212 double aWidth )
213{
214 VECTOR2I startLine = aStart - aCenter;
215 VECTOR2I endLine = aEnd - aCenter;
216
217 EDA_ANGLE startAngle( startLine );
218 EDA_ANGLE endAngle( endLine );
219
220 startAngle.Normalize();
221 endAngle.Normalize();
222
223 EDA_ANGLE angle = endAngle - startAngle;
224
225 if( aClockwise )
226 angle = angle.Normalize() - ANGLE_360;
227 else
228 angle = angle.Normalize();
229
230 m_start = aStart;
231 m_end = aEnd;
232 m_mid = aStart;
233
234 RotatePoint( m_mid, aCenter, -angle / 2.0 );
235
236 update_bbox();
237
238 return *this;
239}
240
241
242bool SHAPE_ARC::Collide( const SEG& aSeg, int aClearance, int* aActual, VECTOR2I* aLocation ) const
243{
244 if( aSeg.A == aSeg.B )
245 return Collide( aSeg.A, aClearance, aActual, aLocation );
246
247 VECTOR2I center = GetCenter();
248 CIRCLE circle( center, GetRadius() );
249
250 // Possible points of the collision are:
251 // 1. Intersetion of the segment with the full circle
252 // 2. Closest point on the segment to the center of the circle
253 // 3. Closest point on the segment to the end points of the arc
254 // 4. End points of the segment
255
256 std::vector<VECTOR2I> candidatePts = circle.Intersect( aSeg );
257
258 candidatePts.push_back( aSeg.NearestPoint( center ) );
259 candidatePts.push_back( aSeg.NearestPoint( m_start ) );
260 candidatePts.push_back( aSeg.NearestPoint( m_end ) );
261 candidatePts.push_back( aSeg.A );
262 candidatePts.push_back( aSeg.B );
263
264 bool any_collides = false;
265
266 for( const VECTOR2I& candidate : candidatePts )
267 {
268 bool collides = Collide( candidate, aClearance, aActual, aLocation );
269 any_collides |= collides;
270
271 if( collides && ( !aActual || *aActual == 0 ) )
272 return true;
273 }
274
275 return any_collides;
276}
277
278
279int SHAPE_ARC::IntersectLine( const SEG& aSeg, std::vector<VECTOR2I>* aIpsBuffer ) const
280{
281 if( aSeg.A == aSeg.B ) // One point does not define a line....
282 return 0;
283
284 CIRCLE circ( GetCenter(), GetRadius() );
285
286 std::vector<VECTOR2I> intersections = circ.IntersectLine( aSeg );
287
288 size_t originalSize = aIpsBuffer->size();
289
290 for( const VECTOR2I& intersection : intersections )
291 {
292 if( sliceContainsPoint( intersection ) )
293 aIpsBuffer->push_back( intersection );
294 }
295
296 return aIpsBuffer->size() - originalSize;
297}
298
299
300int SHAPE_ARC::Intersect( const SHAPE_ARC& aArc, std::vector<VECTOR2I>* aIpsBuffer ) const
301{
302 CIRCLE thiscirc( GetCenter(), GetRadius() );
303 CIRCLE othercirc( aArc.GetCenter(), aArc.GetRadius() );
304
305 std::vector<VECTOR2I> intersections = thiscirc.Intersect( othercirc );
306
307 size_t originalSize = aIpsBuffer->size();
308
309 for( const VECTOR2I& intersection : intersections )
310 {
311 if( sliceContainsPoint( intersection ) && aArc.sliceContainsPoint( intersection ) )
312 aIpsBuffer->push_back( intersection );
313 }
314
315 return aIpsBuffer->size() - originalSize;
316}
317
318
320{
321 std::vector<VECTOR2I> points;
322 // Put start and end points in the point list
323 points.push_back( m_start );
324 points.push_back( m_end );
325
326 EDA_ANGLE start_angle = GetStartAngle();
327 EDA_ANGLE end_angle = start_angle + GetCentralAngle();
328
329 // we always count quadrants clockwise (increasing angle)
330 if( start_angle > end_angle )
331 std::swap( start_angle, end_angle );
332
333 int quad_angle_start = std::ceil( start_angle.AsDegrees() / 90.0 );
334 int quad_angle_end = std::floor( end_angle.AsDegrees() / 90.0 );
335
336 // very large radius means the arc is similar to a segment
337 // so do not try to add more points, center cannot be handled
338 // Very large is here > INT_MAX/2
339 double d_radius = GetRadius();
340
341 if( d_radius < (double)INT_MAX/2.0 )
342 {
343 VECTOR2I center = GetCenter();
344
345 const int radius = KiROUND( d_radius );
346
347 // count through quadrants included in arc
348 for( int quad_angle = quad_angle_start; quad_angle <= quad_angle_end; ++quad_angle )
349 {
350 VECTOR2I quad_pt = center;
351
352 switch( quad_angle % 4 )
353 {
354 case 0: quad_pt += { radius, 0 }; break;
355 case 1: case -3: quad_pt += { 0, radius }; break;
356 case 2: case -2: quad_pt += { -radius, 0 }; break;
357 case 3: case -1: quad_pt += { 0, -radius }; break;
358 default:
359 assert( false );
360 }
361
362 points.push_back( quad_pt );
363 }
364 }
365
366 m_bbox.Compute( points );
367}
368
369
370const BOX2I SHAPE_ARC::BBox( int aClearance ) const
371{
372 BOX2I bbox( m_bbox );
373
374 if( m_width != 0 )
375 bbox.Inflate( KiROUND( m_width / 2.0 ) + 1 );
376
377 if( aClearance != 0 )
378 bbox.Inflate( aClearance );
379
380 return bbox;
381}
382
383
385{
386 return GetCentralAngle() < ANGLE_0;
387}
388
389
391{
392 const static int s_epsilon = 8;
393
394 CIRCLE fullCircle( GetCenter(), GetRadius() );
395 VECTOR2I nearestPt = fullCircle.NearestPoint( aP );
396
397 if( ( nearestPt - m_start ).SquaredEuclideanNorm() <= s_epsilon )
398 return m_start;
399
400 if( ( nearestPt - m_end ).SquaredEuclideanNorm() <= s_epsilon )
401 return m_end;
402
403 if( sliceContainsPoint( nearestPt ) )
404 return nearestPt;
405
406 if( ( aP - m_start ).SquaredEuclideanNorm() <= ( aP - m_end ).SquaredEuclideanNorm() )
407 return m_start;
408 else
409 return m_end;
410}
411
412
413bool SHAPE_ARC::Collide( const VECTOR2I& aP, int aClearance, int* aActual,
414 VECTOR2I* aLocation ) const
415{
416 int minDist = aClearance + m_width / 2;
417 auto bbox = BBox( minDist );
418
419 // Fast check using bounding box:
420 if( !bbox.Contains( aP ) )
421 return false;
422
423 CIRCLE fullCircle( GetCenter(), GetRadius() );
424 VECTOR2I nearestPt = fullCircle.NearestPoint( aP );
425
426 int dist = ( nearestPt - aP ).EuclideanNorm();
427
428 // If not a 360 degree arc, need to use arc angles to decide if point collides
429 if( m_start != m_end )
430 {
431 bool ccw = GetCentralAngle() > ANGLE_0;
432 EDA_ANGLE angleToPt( aP - fullCircle.Center ); // Angle from center to the point
433 EDA_ANGLE rotatedPtAngle = ( angleToPt.Normalize() - GetStartAngle() ).Normalize();
434 EDA_ANGLE rotatedEndAngle = ( GetEndAngle() - GetStartAngle() ).Normalize();
435
436 if( ( ccw && rotatedPtAngle > rotatedEndAngle )
437 || ( !ccw && rotatedPtAngle < rotatedEndAngle ) )
438 {
439 int distStartpt = ( aP - m_start ).EuclideanNorm();
440 int distEndpt = ( aP - m_end ).EuclideanNorm();
441 dist = std::min( distStartpt, distEndpt );
442 }
443 }
444
445 if( dist <= minDist )
446 {
447 if( aLocation )
448 *aLocation = nearestPt;
449
450 if( aActual )
451 *aActual = std::max( 0, dist - m_width / 2 );
452
453 return true;
454 }
455
456 return false;
457}
458
459
461{
462 EDA_ANGLE angle( m_start - GetCenter() );
463 return angle.Normalize();
464}
465
466
468{
469 EDA_ANGLE angle( m_end - GetCenter() );
470 return angle.Normalize();
471}
472
473
475{
476 return CalcArcCenter( m_start, m_mid, m_end );
477}
478
479
481{
482 double radius = GetRadius();
483 EDA_ANGLE includedAngle = GetCentralAngle();
484
485 return std::abs( radius * includedAngle.AsRadians() );
486}
487
488
490{
491 // Arcs with same start and end points can be 0 deg or 360 deg arcs.
492 // However, they are expected to be circles.
493 // So return 360 degrees as central arc:
494 if( m_start == m_end )
495 return ANGLE_360;
496
497 VECTOR2I center = GetCenter();
498 EDA_ANGLE angle1 = EDA_ANGLE( m_mid - center ) - EDA_ANGLE( m_start - center );
499 EDA_ANGLE angle2 = EDA_ANGLE( m_end - center ) - EDA_ANGLE( m_mid - center );
500
501 return angle1.Normalize180() + angle2.Normalize180();
502}
503
504
506{
507 return std::sqrt( ( m_start - GetCenter() ).SquaredEuclideanNorm() );
508}
509
510
512 double* aEffectiveAccuracy ) const
513{
515 double r = GetRadius();
517 VECTOR2I c = GetCenter();
519
520 SEG startToEnd( GetP0(), GetP1() );
521 double halfAccuracy = std::max( 1.0, aAccuracy / 2 );
522
523 int n;
524
525 // To calculate the arc to segment count, use the external radius instead of the radius.
526 // for a arc with small radius and large width, the difference can be significant
527 double external_radius = r+(m_width/2);
528 double effectiveAccuracy;
529
530 if( external_radius < halfAccuracy
531 || startToEnd.Distance( GetArcMid() ) < halfAccuracy ) // Should be a very rare case
532 {
533 // In this case, the arc is approximated by one segment, with a effective error
534 // between -aAccuracy/2 and +aAccuracy/2, as expected.
535 n = 0;
536 effectiveAccuracy = external_radius;
537 }
538 else
539 {
540 n = GetArcToSegmentCount( external_radius, aAccuracy, ca );
541
542 // Recalculate the effective error of approximation, that can be < aAccuracy
543 int seg360 = n * 360.0 / fabs( ca.AsDegrees() );
544 effectiveAccuracy = CircleToEndSegmentDeltaRadius( external_radius, seg360 );
545 }
546
547 // Split the error on either side of the arc. Since we want the start and end points
548 // to be exactly on the arc, the first and last segments need to be shorter to stay within
549 // the error band (since segments normally start 1/2 the error band outside the arc).
550 r += effectiveAccuracy / 2;
551 n = n * 2;
552
553 rv.Append( m_start );
554
555 for( int i = 1; i < n ; i += 2 )
556 {
557 EDA_ANGLE a = sa;
558
559 if( n != 0 )
560 a += ( ca * i ) / n;
561
562 double x = c.x + r * a.Cos();
563 double y = c.y + r * a.Sin();
564
565 rv.Append( KiROUND( x ), KiROUND( y ) );
566 }
567
568 rv.Append( m_end );
569
570 if( aEffectiveAccuracy )
571 *aEffectiveAccuracy = effectiveAccuracy;
572
573 return rv;
574}
575
576
577void SHAPE_ARC::Move( const VECTOR2I& aVector )
578{
579 m_start += aVector;
580 m_end += aVector;
581 m_mid += aVector;
582 update_bbox();
583}
584
585
586void SHAPE_ARC::Rotate( const EDA_ANGLE& aAngle, const VECTOR2I& aCenter )
587{
588 RotatePoint( m_start, aCenter, aAngle );
589 RotatePoint( m_end, aCenter, aAngle );
590 RotatePoint( m_mid, aCenter, aAngle );
591
592 update_bbox();
593}
594
595
596void SHAPE_ARC::Mirror( bool aX, bool aY, const VECTOR2I& aVector )
597{
598 if( aX )
599 {
600 m_start.x = -m_start.x + 2 * aVector.x;
601 m_end.x = -m_end.x + 2 * aVector.x;
602 m_mid.x = -m_mid.x + 2 * aVector.x;
603 }
604
605 if( aY )
606 {
607 m_start.y = -m_start.y + 2 * aVector.y;
608 m_end.y = -m_end.y + 2 * aVector.y;
609 m_mid.y = -m_mid.y + 2 * aVector.y;
610 }
611
612 update_bbox();
613}
614
615
616void SHAPE_ARC::Mirror( const SEG& axis )
617{
618 m_start = axis.ReflectPoint( m_start );
619 m_end = axis.ReflectPoint( m_end );
620 m_mid = axis.ReflectPoint( m_mid );
621
622 update_bbox();
623}
624
625
627{
628 std::swap( m_start, m_end );
629}
630
631
633{
634 return SHAPE_ARC( m_end, m_mid, m_start, m_width );
635}
636
637
639{
642 EDA_ANGLE ea = sa + ca;
643
644 EDA_ANGLE phi( p - GetCenter() ); // Angle from center to the point
645 phi.Normalize();
646
647 if( ca >= ANGLE_0 )
648 {
649 while( phi < sa )
650 phi += ANGLE_360;
651
652 return phi >= sa && phi <= ea;
653 }
654 else
655 {
656 while( phi > sa )
657 phi -= ANGLE_360;
658
659 return phi <= sa && phi >= ea;
660 }
661}
662
663
664void SHAPE_ARC::TransformToPolygon( SHAPE_POLY_SET& aBuffer, int aError, ERROR_LOC aErrorLoc ) const
665{
666 TransformArcToPolygon( aBuffer, m_start, m_mid, m_end, m_width, aError, aErrorLoc );
667}
BOX2< Vec > & Inflate(coord_type dx, coord_type dy)
Inflates the rectangle horizontally by dx and vertically by dy.
Definition: box2.h:507
void Compute(const Container &aPointList)
Compute the bounding box from a given list of points.
Definition: box2.h:83
Represent basic circle geometry with utility geometry functions.
Definition: circle.h:33
VECTOR2I Center
Public to make access simpler.
Definition: circle.h:116
std::vector< VECTOR2I > Intersect(const CIRCLE &aCircle) const
Compute the intersection points between this circle and aCircle.
Definition: circle.cpp:209
std::vector< VECTOR2I > IntersectLine(const SEG &aLine) const
Compute the intersection points between this circle and aLine.
Definition: circle.cpp:288
VECTOR2I NearestPoint(const VECTOR2I &aP) const
Compute the point on the circumference of the circle that is the closest to aP.
Definition: circle.cpp:197
EDA_ANGLE Normalize()
Definition: eda_angle.h:255
double Sin() const
Definition: eda_angle.h:212
double AsDegrees() const
Definition: eda_angle.h:155
EDA_ANGLE Normalize180()
Definition: eda_angle.h:294
double AsRadians() const
Definition: eda_angle.h:159
double Cos() const
Definition: eda_angle.h:227
Definition: seg.h:42
const VECTOR2I ReflectPoint(const VECTOR2I &aP) const
Reflect a point using this segment as axis.
Definition: seg.cpp:291
VECTOR2I A
Definition: seg.h:49
VECTOR2I B
Definition: seg.h:50
const VECTOR2I NearestPoint(const VECTOR2I &aP) const
Compute a point on the segment (this) that is closest to point aP.
Definition: seg.cpp:269
int Length() const
Return the length (this).
Definition: seg.h:326
OPT_VECTOR2I Intersect(const SEG &aSeg, bool aIgnoreEndpoints=false, bool aLines=false) const
Compute intersection point of segment (this) with segment aSeg.
Definition: seg.cpp:196
VECTOR2I Center() const
Definition: seg.h:362
int Distance(const SEG &aSeg) const
Compute minimum Euclidean distance to segment aSeg.
Definition: seg.cpp:329
VECTOR2I LineProject(const VECTOR2I &aP) const
Compute the perpendicular projection point of aP on a line passing through ends of the segment.
Definition: seg.cpp:312
EDA_ANGLE GetCentralAngle() const
Definition: shape_arc.cpp:489
const VECTOR2I & GetArcMid() const
Definition: shape_arc.h:114
bool IsClockwise() const
Definition: shape_arc.cpp:384
void Move(const VECTOR2I &aVector) override
Definition: shape_arc.cpp:577
SHAPE_ARC & ConstructFromStartEndAngle(const VECTOR2I &aStart, const VECTOR2I &aEnd, const EDA_ANGLE &aAngle, double aWidth=0)
Construct this arc from the given start, end and angle.
Definition: shape_arc.cpp:192
const BOX2I BBox(int aClearance=0) const override
Compute a bounding box of the shape, with a margin of aClearance a collision.
Definition: shape_arc.cpp:370
EDA_ANGLE GetEndAngle() const
Definition: shape_arc.cpp:467
double GetLength() const
Definition: shape_arc.cpp:480
BOX2I m_bbox
Definition: shape_arc.h:269
void Rotate(const EDA_ANGLE &aAngle, const VECTOR2I &aCenter) override
Rotate the arc by a given angle about a point.
Definition: shape_arc.cpp:586
bool sliceContainsPoint(const VECTOR2I &p) const
Definition: shape_arc.cpp:638
VECTOR2I NearestPoint(const VECTOR2I &aP) const
Definition: shape_arc.cpp:390
SHAPE_ARC()
Definition: shape_arc.h:40
int GetWidth() const
Definition: shape_arc.h:159
VECTOR2I m_mid
Definition: shape_arc.h:265
SHAPE_ARC & ConstructFromStartEndCenter(const VECTOR2I &aStart, const VECTOR2I &aEnd, const VECTOR2I &aCenter, bool aClockwise=false, double aWidth=0)
Constructs this arc from the given start, end and center.
Definition: shape_arc.cpp:210
SHAPE_ARC Reversed() const
Definition: shape_arc.cpp:632
int m_width
Definition: shape_arc.h:268
const VECTOR2I & GetP1() const
Definition: shape_arc.h:113
int IntersectLine(const SEG &aSeg, std::vector< VECTOR2I > *aIpsBuffer) const
Find intersection points between this arc and aSeg, treating aSeg as an infinite line.
Definition: shape_arc.cpp:279
VECTOR2I m_end
Definition: shape_arc.h:266
bool Collide(const SEG &aSeg, int aClearance=0, int *aActual=nullptr, VECTOR2I *aLocation=nullptr) const override
Check if the boundary of shape (this) lies closer to the segment aSeg than aClearance,...
Definition: shape_arc.cpp:242
const SHAPE_LINE_CHAIN ConvertToPolyline(double aAccuracy=DefaultAccuracyForPCB(), double *aEffectiveAccuracy=nullptr) const
Construct a SHAPE_LINE_CHAIN of segments from a given arc.
Definition: shape_arc.cpp:511
int Intersect(const SHAPE_ARC &aArc, std::vector< VECTOR2I > *aIpsBuffer) const
Find intersection points between this arc and aArc.
Definition: shape_arc.cpp:300
double GetRadius() const
Definition: shape_arc.cpp:505
EDA_ANGLE GetStartAngle() const
Definition: shape_arc.cpp:460
void update_bbox()
Definition: shape_arc.cpp:319
void TransformToPolygon(SHAPE_POLY_SET &aBuffer, int aError, ERROR_LOC aErrorLoc) const override
Fills a SHAPE_POLY_SET with a polygon representation of this shape.
Definition: shape_arc.cpp:664
void Reverse()
Definition: shape_arc.cpp:626
VECTOR2I GetCenter() const
Definition: shape_arc.cpp:474
void Mirror(bool aX=true, bool aY=false, const VECTOR2I &aVector={ 0, 0 })
Definition: shape_arc.cpp:596
bool ccw(const VECTOR2I &aA, const VECTOR2I &aB, const VECTOR2I &aC) const
Definition: shape_arc.h:253
const VECTOR2I & GetP0() const
Definition: shape_arc.h:112
VECTOR2I m_start
Definition: shape_arc.h:264
Represent a polyline containing arcs as well as line segments: A chain of connected line and/or arc s...
void Append(int aX, int aY, bool aAllowDuplication=false)
Append a new point at the end of the line chain.
Represent a set of closed polygons.
An abstract shape on 2D plane.
Definition: shape.h:126
T EuclideanNorm() const
Compute the Euclidean norm of the vector, which is defined as sqrt(x ** 2 + y ** 2).
Definition: vector2d.h:265
void TransformArcToPolygon(SHAPE_POLY_SET &aBuffer, const VECTOR2I &aStart, const VECTOR2I &aMid, const VECTOR2I &aEnd, int aWidth, int aError, ERROR_LOC aErrorLoc)
Convert arc to multiple straight segments.
static constexpr EDA_ANGLE ANGLE_0
Definition: eda_angle.h:435
static constexpr EDA_ANGLE ANGLE_90
Definition: eda_angle.h:437
static constexpr EDA_ANGLE ANGLE_360
Definition: eda_angle.h:441
a few functions useful in geometry calculations.
int CircleToEndSegmentDeltaRadius(int aInnerCircleRadius, int aSegCount)
ERROR_LOC
When approximating an arc or circle, should the error be placed on the outside or inside of the curve...
int GetArcToSegmentCount(int aRadius, int aErrorMax, const EDA_ANGLE &aArcAngle)
EDA_ANGLE abs(const EDA_ANGLE &aAngle)
Definition: eda_angle.h:424
std::optional< VECTOR2I > OPT_VECTOR2I
Definition: seg.h:39
@ SH_ARC
circular arc
Definition: shape.h:54
std::ostream & operator<<(std::ostream &aStream, const SHAPE_ARC &aArc)
Definition: shape_arc.cpp:36
void RotatePoint(int *pX, int *pY, const EDA_ANGLE &aAngle)
Calculate the new point of coord coord pX, pY, for a rotation center 0, 0.
Definition: trigo.cpp:228
const VECTOR2I CalcArcCenter(const VECTOR2I &aStart, const VECTOR2I &aMid, const VECTOR2I &aEnd)
Determine the center of an arc or circle given three points on its circumference.
Definition: trigo.cpp:520
double EuclideanNorm(const VECTOR2I &vector)
Definition: trigo.h:128
constexpr ret_type KiROUND(fp_type v)
Round a floating point number to an integer using "round halfway cases away from zero".
Definition: util.h:85
VECTOR2< int > VECTOR2I
Definition: vector2d.h:588