mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-09-14 10:13:19 +02:00
Pcbnew, ConnectBoardShapes(): do not add 0 size segments to outlines.
Add also our standard copyright text.
This commit is contained in:
parent
db9734923c
commit
599a8304a6
@ -1,3 +1,27 @@
|
|||||||
|
/*
|
||||||
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
||||||
|
*
|
||||||
|
* Copyright (C) 2023 Alex Shvartzkop <dudesuchamazing@gmail.com>
|
||||||
|
* Copyright (C) 2023 KiCad Developers, see AUTHORS.txt for contributors.
|
||||||
|
*
|
||||||
|
* 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
|
||||||
|
*/
|
||||||
|
|
||||||
#include "fix_board_shape.h"
|
#include "fix_board_shape.h"
|
||||||
|
|
||||||
#include <vector>
|
#include <vector>
|
||||||
@ -88,6 +112,10 @@ void ConnectBoardShapes( std::vector<PCB_SHAPE*>& aShapeList,
|
|||||||
|
|
||||||
auto addSegment = [&]( const VECTOR2I start, const VECTOR2I end, int width, PCB_LAYER_ID layer )
|
auto addSegment = [&]( const VECTOR2I start, const VECTOR2I end, int width, PCB_LAYER_ID layer )
|
||||||
{
|
{
|
||||||
|
// Ensure null shapes are not added
|
||||||
|
if( start == end )
|
||||||
|
return;
|
||||||
|
|
||||||
std::unique_ptr<PCB_SHAPE> seg = std::make_unique<PCB_SHAPE>( nullptr, SHAPE_T::SEGMENT );
|
std::unique_ptr<PCB_SHAPE> seg = std::make_unique<PCB_SHAPE>( nullptr, SHAPE_T::SEGMENT );
|
||||||
seg->SetStart( start );
|
seg->SetStart( start );
|
||||||
seg->SetEnd( end );
|
seg->SetEnd( end );
|
||||||
@ -207,7 +235,6 @@ void ConnectBoardShapes( std::vector<PCB_SHAPE*>& aShapeList,
|
|||||||
else
|
else
|
||||||
arcShape->SetArcGeometry( arc.GetP0(), arc.GetArcMid(), circProj );
|
arcShape->SetArcGeometry( arc.GetP0(), arc.GetArcMid(), circProj );
|
||||||
|
|
||||||
|
|
||||||
addSegment( circProj, lineProj, segShape->GetWidth(), segShape->GetLayer() );
|
addSegment( circProj, lineProj, segShape->GetWidth(), segShape->GetLayer() );
|
||||||
success = true;
|
success = true;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user