2018-02-04 12:09:30 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2017 CERN
|
|
|
|
* @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
|
|
|
|
*/
|
|
|
|
|
2018-04-19 20:20:25 +00:00
|
|
|
#include <vector>
|
|
|
|
|
2018-04-24 23:28:13 +00:00
|
|
|
#include <base_units.h>
|
|
|
|
#include <geometry/geometry_utils.h>
|
2018-02-04 12:09:30 +00:00
|
|
|
#include <geometry/shape_arc.h>
|
|
|
|
#include <geometry/shape_line_chain.h>
|
|
|
|
|
|
|
|
bool SHAPE_ARC::Collide( const SEG& aSeg, int aClearance ) const
|
|
|
|
{
|
|
|
|
int minDist = aClearance + m_width / 2;
|
|
|
|
auto centerDist = aSeg.Distance( m_pc );
|
2018-02-16 16:34:57 +00:00
|
|
|
auto p1 = GetP1();
|
2018-02-04 12:09:30 +00:00
|
|
|
|
|
|
|
if( centerDist < minDist )
|
|
|
|
return true;
|
|
|
|
|
|
|
|
auto ab = (aSeg.B - aSeg.A );
|
|
|
|
auto ac = ( m_pc - aSeg.A );
|
|
|
|
|
|
|
|
auto lenAbSq = ab.SquaredEuclideanNorm();
|
|
|
|
|
|
|
|
auto lambda = (double) ac.Dot( ab ) / (double) lenAbSq;
|
|
|
|
|
|
|
|
|
|
|
|
if( lambda >= 0.0 && lambda <= 1.0 )
|
|
|
|
{
|
|
|
|
VECTOR2I p;
|
|
|
|
|
|
|
|
p.x = (double) aSeg.A.x * lambda + (double) aSeg.B.x * (1.0 - lambda);
|
|
|
|
p.y = (double) aSeg.A.y * lambda + (double) aSeg.B.y * (1.0 - lambda);
|
|
|
|
|
|
|
|
auto p0pdist = ( m_p0 - p ).EuclideanNorm();
|
|
|
|
|
|
|
|
if( p0pdist < minDist )
|
|
|
|
return true;
|
|
|
|
|
2018-02-16 16:34:57 +00:00
|
|
|
auto p1pdist = ( p1 - p ).EuclideanNorm();
|
2018-02-04 12:09:30 +00:00
|
|
|
|
|
|
|
if( p1pdist < minDist )
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto p0dist = aSeg.Distance( m_p0 );
|
|
|
|
|
|
|
|
if( p0dist > minDist )
|
|
|
|
return true;
|
|
|
|
|
2018-02-16 16:34:57 +00:00
|
|
|
auto p1dist = aSeg.Distance( p1 );
|
2018-02-04 12:09:30 +00:00
|
|
|
|
|
|
|
if( p1dist > minDist )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-02-16 16:34:57 +00:00
|
|
|
#if 0
|
|
|
|
bool SHAPE_ARC::ConstructFromCorners( VECTOR2I aP0, VECTOR2I aP1, double aCenterAngle )
|
2018-02-04 12:09:30 +00:00
|
|
|
{
|
|
|
|
VECTOR2D mid = ( VECTOR2D( aP0 ) + VECTOR2D( aP1 ) ) * 0.5;
|
|
|
|
VECTOR2D chord = VECTOR2D( aP1 ) - VECTOR2D( aP0 );
|
2018-02-16 16:34:57 +00:00
|
|
|
double c = (aP1 - aP0).EuclideanNorm() / 2;
|
2018-02-04 12:09:30 +00:00
|
|
|
VECTOR2D d = chord.Rotate( M_PI / 2.0 ).Resize( c );
|
|
|
|
|
|
|
|
m_pc = mid + d * ( 1.0 / tan( aCenterAngle / 2.0 * M_PI / 180.0 ) );
|
|
|
|
m_p0 = aP0;
|
|
|
|
m_p1 = aP1;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-02-16 16:34:57 +00:00
|
|
|
bool SHAPE_ARC::ConstructFromCornerAndAngles( VECTOR2I aP0,
|
2018-02-04 12:09:30 +00:00
|
|
|
double aStartAngle,
|
|
|
|
double aCenterAngle,
|
|
|
|
double aRadius )
|
|
|
|
{
|
|
|
|
m_p0 = aP0;
|
|
|
|
auto d1 = VECTOR2D( 1.0, 0.0 ).Rotate( aStartAngle * M_PI / 180.0 ) * aRadius;
|
|
|
|
auto d2 =
|
|
|
|
VECTOR2D( 1.0, 0.0 ).Rotate( (aStartAngle + aCenterAngle) * M_PI / 180.0 ) * aRadius;
|
|
|
|
|
|
|
|
m_pc = m_p0 - (VECTOR2I) d1;
|
|
|
|
m_p1 = m_pc + (VECTOR2I) d2;
|
|
|
|
|
|
|
|
if( aCenterAngle < 0 )
|
|
|
|
std::swap( m_p0, m_p1 );
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-02-16 16:34:57 +00:00
|
|
|
bool SHAPE_ARC::ConstructFromCenterAndAngles( VECTOR2I aCenter, double aRadius, double aStartAngle, double aCenterAngle )
|
|
|
|
{
|
|
|
|
double ea = aStartAngle + aCenterAngle;
|
|
|
|
|
|
|
|
m_fullCircle = false;
|
|
|
|
m_pc = aCenter;
|
|
|
|
m_p0.x = (int) ( (double) aCenter.x + aRadius * cos( aStartAngle * M_PI / 180.0 ) );
|
|
|
|
m_p0.y = (int) ( (double) aCenter.y + aRadius * sin( aStartAngle * M_PI / 180.0 ) );
|
|
|
|
m_p1.x = (int) ( (double) aCenter.x + aRadius * cos( ea * M_PI / 180.0 ) );
|
|
|
|
m_p1.y = (int) ( (double) aCenter.y + aRadius * sin( ea * M_PI / 180.0 ) );
|
|
|
|
|
|
|
|
if( aCenterAngle == 360.0 )
|
|
|
|
{
|
|
|
|
m_fullCircle = true;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else if ( aCenterAngle < 0.0 )
|
|
|
|
{
|
|
|
|
std::swap(m_p0, m_p1);
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
const VECTOR2I SHAPE_ARC::GetP1() const
|
|
|
|
{
|
|
|
|
VECTOR2D rvec = m_p0 - m_pc;
|
|
|
|
auto ca = m_centralAngle * M_PI / 180.0;
|
|
|
|
VECTOR2I p1;
|
|
|
|
|
|
|
|
p1.x = (int) ( m_pc.x + rvec.x * cos( ca ) - rvec.y * sin( ca ) );
|
|
|
|
p1.y = (int) ( m_pc.y + rvec.x * sin( ca ) + rvec.y * cos( ca ) );
|
|
|
|
|
|
|
|
return p1;
|
|
|
|
}
|
2018-02-04 12:09:30 +00:00
|
|
|
|
2018-04-19 20:20:25 +00:00
|
|
|
|
|
|
|
const BOX2I SHAPE_ARC::BBox( int aClearance ) const
|
|
|
|
{
|
|
|
|
BOX2I bbox;
|
|
|
|
std::vector<VECTOR2I> points;
|
|
|
|
points.push_back( m_pc );
|
|
|
|
points.push_back( m_p0 );
|
|
|
|
points.push_back( GetP1() );
|
|
|
|
|
|
|
|
bbox.Compute( points );
|
|
|
|
|
|
|
|
if( aClearance != 0 )
|
|
|
|
bbox.Inflate( aClearance );
|
|
|
|
|
|
|
|
return bbox;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-02-04 12:09:30 +00:00
|
|
|
bool SHAPE_ARC::Collide( const VECTOR2I& aP, int aClearance ) const
|
|
|
|
{
|
|
|
|
assert( false );
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
double SHAPE_ARC::GetStartAngle() const
|
|
|
|
{
|
|
|
|
VECTOR2D d( m_p0 - m_pc );
|
|
|
|
|
2018-02-16 16:34:57 +00:00
|
|
|
auto ang = 180.0 / M_PI * atan2( d.y, d.x );
|
2018-02-04 12:09:30 +00:00
|
|
|
|
2018-02-16 16:34:57 +00:00
|
|
|
return ang;
|
|
|
|
}
|
2018-02-04 12:09:30 +00:00
|
|
|
|
|
|
|
double SHAPE_ARC::GetEndAngle() const
|
|
|
|
{
|
2018-02-16 16:34:57 +00:00
|
|
|
double a = GetStartAngle() + m_centralAngle;
|
2018-02-04 12:09:30 +00:00
|
|
|
|
2018-02-16 16:34:57 +00:00
|
|
|
if( a < 0.0 )
|
|
|
|
a += 360.0;
|
|
|
|
else if ( a >= 360.0 )
|
|
|
|
a -= 360.0;
|
2018-02-04 12:09:30 +00:00
|
|
|
|
2018-02-16 16:34:57 +00:00
|
|
|
return a;
|
|
|
|
}
|
2018-02-04 12:09:30 +00:00
|
|
|
|
|
|
|
double SHAPE_ARC::GetCentralAngle() const
|
|
|
|
{
|
2018-02-16 16:34:57 +00:00
|
|
|
return m_centralAngle;
|
2018-02-04 12:09:30 +00:00
|
|
|
}
|
|
|
|
|
2018-02-16 16:34:57 +00:00
|
|
|
int SHAPE_ARC::GetRadius() const
|
|
|
|
{
|
|
|
|
return (m_p0 - m_pc).EuclideanNorm();
|
|
|
|
}
|
2018-02-15 09:22:47 +00:00
|
|
|
|
2018-02-16 16:34:57 +00:00
|
|
|
const SHAPE_LINE_CHAIN SHAPE_ARC::ConvertToPolyline( double aAccuracy ) const
|
2018-02-04 12:09:30 +00:00
|
|
|
{
|
|
|
|
SHAPE_LINE_CHAIN rv;
|
|
|
|
double r = GetRadius();
|
2018-02-16 16:34:57 +00:00
|
|
|
double sa = GetStartAngle();
|
2018-02-04 12:09:30 +00:00
|
|
|
auto c = GetCenter();
|
|
|
|
int n;
|
|
|
|
|
|
|
|
if( r == 0.0 )
|
2018-02-16 16:34:57 +00:00
|
|
|
{
|
|
|
|
n = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-04-24 23:28:13 +00:00
|
|
|
n = GetArcToSegmentCount( r, From_User_Unit( MILLIMETRES, aAccuracy ), m_centralAngle );
|
2018-02-16 16:34:57 +00:00
|
|
|
}
|
2018-02-04 12:09:30 +00:00
|
|
|
|
|
|
|
for( int i = 0; i <= n ; i++ )
|
|
|
|
{
|
2018-02-16 16:34:57 +00:00
|
|
|
double a = sa + m_centralAngle * (double) i / (double) n;
|
2018-02-04 12:09:30 +00:00
|
|
|
double x = c.x + r * cos( a * M_PI / 180.0 );
|
|
|
|
double y = c.y + r * sin( a * M_PI / 180.0 );
|
|
|
|
|
|
|
|
rv.Append( (int) x, (int) y );
|
|
|
|
}
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|