2018-02-04 12:09:30 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2018-02-18 20:00:28 +00:00
|
|
|
* Copyright (C) 2018 CERN
|
2019-05-17 00:13:21 +00:00
|
|
|
* Copyright (C) 2019-2020 KiCad Developers, see AUTHORS.txt for contributors.
|
2018-02-04 12:09:30 +00:00
|
|
|
* @author Tomasz Wlostowski <tomasz.wlostowski@cern.ch>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, you may find one here:
|
|
|
|
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
|
|
|
* or you may search the http://www.gnu.org website for the version 2 license,
|
|
|
|
* or you may write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __SHAPE_ARC_H
|
|
|
|
#define __SHAPE_ARC_H
|
|
|
|
|
2020-01-07 17:12:59 +00:00
|
|
|
#include <geometry/shape.h>
|
2020-10-22 12:36:28 +00:00
|
|
|
#include <convert_to_biu.h>
|
2020-01-07 17:12:59 +00:00
|
|
|
#include <math/vector2d.h> // for VECTOR2I
|
2018-02-04 12:09:30 +00:00
|
|
|
|
|
|
|
class SHAPE_LINE_CHAIN;
|
|
|
|
|
|
|
|
class SHAPE_ARC : public SHAPE
|
|
|
|
{
|
|
|
|
public:
|
2020-10-20 21:23:05 +00:00
|
|
|
/**
|
|
|
|
* @brief This is the minimum precision for all the points in the arc shape.
|
|
|
|
*/
|
|
|
|
static const int MIN_PRECISION_IU = 4;
|
|
|
|
|
2018-02-04 12:09:30 +00:00
|
|
|
SHAPE_ARC() :
|
2020-06-12 21:58:24 +00:00
|
|
|
SHAPE( SH_ARC ), m_width( 0 ) {};
|
2018-02-04 12:09:30 +00:00
|
|
|
|
2020-01-03 13:27:00 +00:00
|
|
|
/**
|
|
|
|
* SHAPE_ARC ctor.
|
|
|
|
* @param aArcCenter is the arc center
|
|
|
|
* @param aArcStartPoint is the arc start point
|
|
|
|
* @param aCenterAngle is the arc angle in degrees
|
|
|
|
* @param aWidth is the arc line thickness
|
|
|
|
*/
|
2018-02-18 20:00:28 +00:00
|
|
|
SHAPE_ARC( const VECTOR2I& aArcCenter, const VECTOR2I& aArcStartPoint,
|
2020-06-12 21:58:24 +00:00
|
|
|
double aCenterAngle, int aWidth = 0 );
|
2018-02-04 12:09:30 +00:00
|
|
|
|
2020-06-12 21:58:24 +00:00
|
|
|
/**
|
|
|
|
* SHAPE_ARC ctor.
|
|
|
|
* @param aArcStart is the arc start point
|
|
|
|
* @param aArcEnd is the arc end point
|
|
|
|
* @param aArcMid is the arc mid point
|
|
|
|
* @param aWidth is the arc line thickness
|
|
|
|
*/
|
|
|
|
SHAPE_ARC( const VECTOR2I& aArcStart, const VECTOR2I& aArcMid,
|
|
|
|
const VECTOR2I& aArcEnd, int aWidth );
|
2020-10-20 21:23:05 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* SHAPE_ARC ctor.
|
|
|
|
* Builds a SHAPE_ARC which is tangent to two segments and a given radius
|
|
|
|
* @param aSegmentA is the first segment
|
|
|
|
* @param aSegmentB is the second segment
|
|
|
|
* @param aRadius is the arc radius
|
|
|
|
* @param aWidth is the arc line thickness
|
|
|
|
*/
|
|
|
|
SHAPE_ARC( const SEG& aSegmentA, const SEG& aSegmentB, int aRadius, int aWidth = 0 );
|
2020-06-12 21:58:24 +00:00
|
|
|
|
|
|
|
SHAPE_ARC( const SHAPE_ARC& aOther );
|
2018-02-04 12:09:30 +00:00
|
|
|
|
2020-06-11 18:26:03 +00:00
|
|
|
virtual ~SHAPE_ARC() {}
|
2018-02-04 12:09:30 +00:00
|
|
|
|
|
|
|
SHAPE* Clone() const override
|
|
|
|
{
|
|
|
|
return new SHAPE_ARC( *this );
|
|
|
|
}
|
|
|
|
|
2020-06-12 21:58:24 +00:00
|
|
|
const VECTOR2I& GetP0() const { return m_start; }
|
|
|
|
const VECTOR2I& GetP1() const { return m_end; }
|
|
|
|
const VECTOR2I& GetArcMid() const { return m_mid; }
|
|
|
|
VECTOR2I GetCenter() const;
|
2018-02-04 12:09:30 +00:00
|
|
|
|
2018-04-19 20:20:25 +00:00
|
|
|
const BOX2I BBox( int aClearance = 0 ) const override;
|
2018-02-04 12:09:30 +00:00
|
|
|
|
2020-09-28 22:27:33 +00:00
|
|
|
bool Collide( const SEG& aSeg, int aClearance = 0, int* aActual = nullptr,
|
|
|
|
VECTOR2I* aLocation = nullptr ) const override;
|
|
|
|
bool Collide( const VECTOR2I& aP, int aClearance = 0, int* aActual = nullptr,
|
|
|
|
VECTOR2I* aLocation = nullptr ) const override;
|
2018-02-04 12:09:30 +00:00
|
|
|
|
|
|
|
void SetWidth( int aWidth )
|
|
|
|
{
|
|
|
|
m_width = aWidth;
|
|
|
|
}
|
|
|
|
|
|
|
|
int GetWidth() const
|
|
|
|
{
|
|
|
|
return m_width;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool IsSolid() const override
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-06-12 21:58:24 +00:00
|
|
|
void Move( const VECTOR2I& aVector ) override;
|
2018-02-04 12:09:30 +00:00
|
|
|
|
2019-03-26 02:55:59 +00:00
|
|
|
/**
|
|
|
|
* Function Rotate
|
|
|
|
* rotates the arc by a given angle about a point
|
|
|
|
* @param aCenter is the rotation center
|
|
|
|
* @param aAngle rotation angle in radians
|
|
|
|
*/
|
2020-07-02 16:06:09 +00:00
|
|
|
void Rotate( double aAngle, const VECTOR2I& aCenter ) override;
|
2019-03-26 02:55:59 +00:00
|
|
|
|
2020-06-12 21:58:24 +00:00
|
|
|
void Mirror( bool aX = true, bool aY = false, const VECTOR2I& aVector = { 0, 0 } );
|
2019-03-26 02:55:59 +00:00
|
|
|
|
2020-06-13 18:21:14 +00:00
|
|
|
double GetRadius() const;
|
2018-02-04 12:09:30 +00:00
|
|
|
|
|
|
|
SEG GetChord() const
|
|
|
|
{
|
2020-06-12 21:58:24 +00:00
|
|
|
return SEG( m_start, m_end );
|
2018-02-04 12:09:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
double GetCentralAngle() const;
|
|
|
|
double GetStartAngle() const;
|
|
|
|
double GetEndAngle() const;
|
|
|
|
|
2018-05-16 20:06:44 +00:00
|
|
|
/**
|
|
|
|
* Constructs a SHAPE_LINE_CHAIN of segments from a given arc
|
|
|
|
* @param aAccuracy maximum divergence from true arc given in internal units
|
2020-10-21 23:59:40 +00:00
|
|
|
* ** Note that the default is ARC_HIGH_DEF in PCBNew units
|
|
|
|
* This is to allow common geometry collision functions
|
2018-05-16 20:06:44 +00:00
|
|
|
* Other programs should call this using explicit accuracy values
|
|
|
|
* TODO: unify KiCad internal units
|
|
|
|
*
|
|
|
|
* @return a SHAPE_LINE_CHAIN
|
|
|
|
*/
|
2020-10-21 23:59:40 +00:00
|
|
|
const SHAPE_LINE_CHAIN ConvertToPolyline( double aAccuracy = 0.005 * PCB_IU_PER_MM ) const;
|
2018-02-04 12:09:30 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
bool ccw( const VECTOR2I& aA, const VECTOR2I& aB, const VECTOR2I& aC ) const
|
|
|
|
{
|
2020-10-05 10:41:14 +00:00
|
|
|
return ( ecoord{ aC.y } - aA.y ) * ( ecoord{ aB.x } - aA.x ) >
|
|
|
|
( ecoord{ aB.y } - aA.y ) * ( ecoord{ aC.x } - aA.x );
|
2018-02-04 12:09:30 +00:00
|
|
|
}
|
|
|
|
|
2019-05-17 00:13:21 +00:00
|
|
|
void update_bbox();
|
|
|
|
|
2018-02-16 16:34:57 +00:00
|
|
|
|
2020-06-12 21:58:24 +00:00
|
|
|
VECTOR2I m_start;
|
|
|
|
VECTOR2I m_mid;
|
|
|
|
VECTOR2I m_end;
|
2018-02-16 16:34:57 +00:00
|
|
|
|
2018-02-04 12:09:30 +00:00
|
|
|
int m_width;
|
2019-05-17 00:13:21 +00:00
|
|
|
BOX2I m_bbox;
|
2018-02-04 12:09:30 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|