2013-09-18 17:55:16 +00:00
|
|
|
/*
|
|
|
|
* KiRouter - a push-and-(sometimes-)shove PCB router
|
|
|
|
*
|
2014-05-14 13:53:54 +00:00
|
|
|
* Copyright (C) 2013-2014 CERN
|
2023-04-09 19:25:22 +00:00
|
|
|
* Copyright (C) 2016-2023 KiCad Developers, see AUTHORS.txt for contributors.
|
2013-09-18 17:55:16 +00:00
|
|
|
* Author: Tomasz Wlostowski <tomasz.wlostowski@cern.ch>
|
2013-09-26 21:53:54 +00:00
|
|
|
*
|
2013-09-18 17:55:16 +00:00
|
|
|
* 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 3 of the License, or (at your
|
|
|
|
* option) any later version.
|
2013-09-26 21:53:54 +00:00
|
|
|
*
|
2013-09-18 17:55:16 +00:00
|
|
|
* 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.
|
2013-09-26 21:53:54 +00:00
|
|
|
*
|
2013-09-18 17:55:16 +00:00
|
|
|
* You should have received a copy of the GNU General Public License along
|
2014-05-14 13:53:54 +00:00
|
|
|
* with this program. If not, see <http://www.gnu.org/licenses/>.
|
2013-09-18 17:55:16 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <math/vector2d.h>
|
|
|
|
|
|
|
|
#include <geometry/shape.h>
|
|
|
|
#include <geometry/shape_line_chain.h>
|
|
|
|
#include <geometry/shape_circle.h>
|
2020-10-07 13:17:04 +00:00
|
|
|
#include <geometry/shape_compound.h>
|
2021-12-01 19:43:10 +00:00
|
|
|
#include <geometry/shape_poly_set.h>
|
2018-05-03 17:52:42 +00:00
|
|
|
|
2021-06-01 05:17:57 +00:00
|
|
|
#include <wx/log.h>
|
|
|
|
|
2020-08-16 19:36:58 +00:00
|
|
|
#include "pns_router.h"
|
2020-01-07 17:12:59 +00:00
|
|
|
#include "pns_solid.h"
|
2013-09-18 17:55:16 +00:00
|
|
|
#include "pns_utils.h"
|
|
|
|
|
2016-08-29 14:38:11 +00:00
|
|
|
namespace PNS {
|
|
|
|
|
2020-10-07 13:17:04 +00:00
|
|
|
|
|
|
|
const SHAPE_LINE_CHAIN SOLID::Hull( int aClearance, int aWalkaroundThickness, int aLayer ) const
|
|
|
|
{
|
2021-01-01 00:29:05 +00:00
|
|
|
if( !m_shape )
|
|
|
|
return SHAPE_LINE_CHAIN();
|
|
|
|
|
|
|
|
if( m_shape->Type() == SH_COMPOUND )
|
2020-10-07 13:17:04 +00:00
|
|
|
{
|
2021-01-01 00:29:05 +00:00
|
|
|
SHAPE_COMPOUND* cmpnd = static_cast<SHAPE_COMPOUND*>( m_shape );
|
2020-10-07 13:17:04 +00:00
|
|
|
|
2021-01-01 00:29:05 +00:00
|
|
|
if ( cmpnd->Shapes().size() == 1 )
|
|
|
|
{
|
2022-08-30 12:52:34 +00:00
|
|
|
return BuildHullForPrimitiveShape( cmpnd->Shapes()[0], aClearance,
|
2021-01-04 22:31:57 +00:00
|
|
|
aWalkaroundThickness );
|
2021-01-01 00:29:05 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2021-12-01 19:43:10 +00:00
|
|
|
SHAPE_POLY_SET hullSet;
|
|
|
|
|
|
|
|
for( SHAPE* shape : cmpnd->Shapes() )
|
|
|
|
{
|
2022-08-30 12:52:34 +00:00
|
|
|
hullSet.AddOutline( BuildHullForPrimitiveShape( shape, aClearance,
|
2021-12-01 19:43:10 +00:00
|
|
|
aWalkaroundThickness ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
hullSet.Simplify( SHAPE_POLY_SET::PM_STRICTLY_SIMPLE );
|
|
|
|
return hullSet.Outline( 0 );
|
2021-01-01 00:29:05 +00:00
|
|
|
}
|
2020-10-07 13:17:04 +00:00
|
|
|
}
|
2021-01-01 00:29:05 +00:00
|
|
|
else
|
|
|
|
{
|
2022-08-30 12:52:34 +00:00
|
|
|
return BuildHullForPrimitiveShape( m_shape, aClearance, aWalkaroundThickness );
|
2020-10-07 13:17:04 +00:00
|
|
|
}
|
2013-09-18 17:55:16 +00:00
|
|
|
}
|
|
|
|
|
2013-09-26 21:53:54 +00:00
|
|
|
|
2016-08-29 17:31:13 +00:00
|
|
|
ITEM* SOLID::Clone() const
|
2013-09-18 17:55:16 +00:00
|
|
|
{
|
2016-08-29 17:31:13 +00:00
|
|
|
ITEM* solid = new SOLID( *this );
|
2014-05-14 13:53:54 +00:00
|
|
|
return solid;
|
2013-09-26 21:53:54 +00:00
|
|
|
}
|
2016-08-29 14:38:11 +00:00
|
|
|
|
2022-08-30 12:52:34 +00:00
|
|
|
|
2020-02-28 22:05:49 +00:00
|
|
|
void SOLID::SetPos( const VECTOR2I& aCenter )
|
|
|
|
{
|
2021-01-04 18:06:39 +00:00
|
|
|
VECTOR2I delta = aCenter - m_pos;
|
2020-02-28 22:05:49 +00:00
|
|
|
|
|
|
|
if( m_shape )
|
|
|
|
m_shape->Move( delta );
|
|
|
|
|
2021-11-25 20:31:18 +00:00
|
|
|
if( m_hole )
|
|
|
|
m_hole->Move( delta );
|
|
|
|
|
2020-02-28 22:05:49 +00:00
|
|
|
m_pos = aCenter;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2023-07-30 19:39:07 +00:00
|
|
|
VECTOR2I SOLID::Anchor( int aN ) const
|
|
|
|
{
|
|
|
|
return m_anchorPoints.empty() ? m_pos : m_anchorPoints[aN];
|
|
|
|
}
|
|
|
|
|
|
|
|
int SOLID::AnchorCount() const
|
|
|
|
{
|
|
|
|
return m_anchorPoints.empty() ? 1 : m_anchorPoints.size();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-08-29 14:38:11 +00:00
|
|
|
}
|