KiCad PCB EDA Suite
Loading...
Searching...
No Matches
shape_circle.h
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) 2013 CERN
5 * @author Tomasz Wlostowski <[email protected]>
6 * Copyright (C) 2021-2022 KiCad Developers, see AUTHORS.txt for contributors.
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#ifndef __SHAPE_CIRCLE_H
27#define __SHAPE_CIRCLE_H
28
29#include <geometry/shape.h>
30#include <geometry/circle.h>
31#include <math/box2.h>
32#include <math/vector2d.h>
33#include <trigo.h>
34
35#include <algorithm>
36
37class SHAPE_CIRCLE : public SHAPE
38{
39public:
42 m_circle()
43 {}
44
45 SHAPE_CIRCLE( const VECTOR2I& aCenter, int aRadius ) :
47 m_circle( aCenter, aRadius )
48 {}
49
50 SHAPE_CIRCLE( const CIRCLE& aCircle ) :
52 m_circle( aCircle )
53 {}
54
55 SHAPE_CIRCLE( const SHAPE_CIRCLE& aOther ) :
57 m_circle( aOther.m_circle )
58 {};
59
61 {}
62
63 SHAPE* Clone() const override
64 {
65 return new SHAPE_CIRCLE( *this );
66 }
67
68 SHAPE_CIRCLE& operator=( const SHAPE_CIRCLE& ) = default;
69
70 const BOX2I BBox( int aClearance = 0 ) const override
71 {
72 const VECTOR2I rc( m_circle.Radius + aClearance, m_circle.Radius + aClearance );
73
74 return BOX2I( m_circle.Center - rc, rc * 2 );
75 }
76
77 bool Collide( const SEG& aSeg, int aClearance = 0, int* aActual = nullptr,
78 VECTOR2I* aLocation = nullptr ) const override
79 {
80 int minDist = aClearance + m_circle.Radius;
82 ecoord dist_sq = ( pn - m_circle.Center ).SquaredEuclideanNorm();
83
84 if( dist_sq == 0 || dist_sq < SEG::Square( minDist ) )
85 {
86 if( aLocation )
87 *aLocation = pn;
88
89 if( aActual )
90 *aActual = std::max( 0, (int) sqrt( dist_sq ) - m_circle.Radius );
91
92 return true;
93 }
94
95 return false;
96 }
97
98 void SetRadius( int aRadius )
99 {
100 m_circle.Radius = aRadius;
101 }
102
103 void SetCenter( const VECTOR2I& aCenter )
104 {
105 m_circle.Center = aCenter;
106 }
107
108 int GetRadius() const
109 {
110 return m_circle.Radius;
111 }
112
113 const VECTOR2I GetCenter() const
114 {
115 return m_circle.Center;
116 }
117
118 const CIRCLE GetCircle() const
119 {
120 return m_circle;
121 }
122
123 void Move( const VECTOR2I& aVector ) override
124 {
125 m_circle.Center += aVector;
126 }
127
128 void Rotate( const EDA_ANGLE& aAngle, const VECTOR2I& aCenter = { 0, 0 } ) override
129 {
130 RotatePoint( m_circle.Center, aCenter, aAngle );
131 }
132
133 bool IsSolid() const override
134 {
135 return true;
136 }
137
138 virtual const std::string Format( bool aCplusPlus = true ) const override;
139
140 void TransformToPolygon( SHAPE_POLY_SET& aBuffer, int aError,
141 ERROR_LOC aErrorLoc ) const override;
142
143private:
145};
146
147#endif
BOX2< VECTOR2I > BOX2I
Definition: box2.h:853
Represent basic circle geometry with utility geometry functions.
Definition: circle.h:33
VECTOR2I Center
Public to make access simpler.
Definition: circle.h:116
int Radius
Public to make access simpler.
Definition: circle.h:115
Definition: seg.h:42
const VECTOR2I NearestPoint(const VECTOR2I &aP) const
Compute a point on the segment (this) that is closest to point aP.
Definition: seg.cpp:269
static SEG::ecoord Square(int a)
Definition: seg.h:123
CIRCLE m_circle
Definition: shape_circle.h:144
bool IsSolid() const override
Definition: shape_circle.h:133
void Rotate(const EDA_ANGLE &aAngle, const VECTOR2I &aCenter={ 0, 0 }) override
Definition: shape_circle.h:128
const CIRCLE GetCircle() const
Definition: shape_circle.h:118
SHAPE_CIRCLE(const SHAPE_CIRCLE &aOther)
Definition: shape_circle.h:55
SHAPE_CIRCLE(const VECTOR2I &aCenter, int aRadius)
Definition: shape_circle.h:45
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_circle.h:77
int GetRadius() const
Definition: shape_circle.h:108
const VECTOR2I GetCenter() const
Definition: shape_circle.h:113
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.
SHAPE_CIRCLE(const CIRCLE &aCircle)
Definition: shape_circle.h:50
const BOX2I BBox(int aClearance=0) const override
Compute a bounding box of the shape, with a margin of aClearance a collision.
Definition: shape_circle.h:70
SHAPE * Clone() const override
Return a dynamically allocated copy of the shape.
Definition: shape_circle.h:63
void SetRadius(int aRadius)
Definition: shape_circle.h:98
virtual const std::string Format(bool aCplusPlus=true) const override
SHAPE_CIRCLE & operator=(const SHAPE_CIRCLE &)=default
void Move(const VECTOR2I &aVector) override
Definition: shape_circle.h:123
void SetCenter(const VECTOR2I &aCenter)
Definition: shape_circle.h:103
Represent a set of closed polygons.
An abstract shape on 2D plane.
Definition: shape.h:126
VECTOR2I::extended_type ecoord
Definition: shape.h:284
ERROR_LOC
When approximating an arc or circle, should the error be placed on the outside or inside of the curve...
@ SH_CIRCLE
circle
Definition: shape.h:50
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