KiCad PCB EDA Suite
Loading...
Searching...
No Matches
convert_shape_list_to_polygon.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 The KiCad Developers, see AUTHORS.txt for contributors.
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <https://www.gnu.org/licenses/>.
18 */
19
20#pragma once
21
22class PCB_SHAPE;
23class SHAPE_POLY_SET;
24class wxString;
25class wxPoint;
26
27typedef
28const std::function<void( const wxString& msg, BOARD_ITEM* itemA, BOARD_ITEM* itemB,
30
39bool TestBoardOutlinesGraphicItems( BOARD* aBoard, int aMinDist,
40 OUTLINE_ERROR_HANDLER* aErrorHandler );
41
59bool ConvertOutlineToPolygon( std::vector<PCB_SHAPE*>& aShapeList, SHAPE_POLY_SET& aPolygons,
60 int aErrorMax, int aChainingEpsilon, bool aAllowDisjoint,
61 OUTLINE_ERROR_HANDLER* aErrorHandler,
62 bool aAllowUseArcsInPolygons = false );
63
64
84extern bool BuildBoardPolygonOutlines( BOARD* aBoard, SHAPE_POLY_SET& aOutlines,
85 int aErrorMax, int aChainingEpsilon, bool aInferOutlineIfNecessary,
86 OUTLINE_ERROR_HANDLER* aErrorHandler = nullptr,
87 bool aAllowUseArcsInPolygons = false );
88
89
100bool BuildFootprintPolygonOutlines( BOARD* aBoard, SHAPE_POLY_SET& aOutlines,
101 int aErrorMax, int aChainingEpsilon,
102 OUTLINE_ERROR_HANDLER* aErrorHandler = nullptr );
A base class for any item which can be embedded within the BOARD container class, and therefore insta...
Definition board_item.h:81
Information pertinent to a Pcbnew printed circuit board.
Definition board.h:372
Represent a set of closed polygons.
bool TestBoardOutlinesGraphicItems(BOARD *aBoard, int aMinDist, OUTLINE_ERROR_HANDLER *aErrorHandler)
Test a board graphic items on edge cut layer for validity.
bool ConvertOutlineToPolygon(std::vector< PCB_SHAPE * > &aShapeList, SHAPE_POLY_SET &aPolygons, int aErrorMax, int aChainingEpsilon, bool aAllowDisjoint, OUTLINE_ERROR_HANDLER *aErrorHandler, bool aAllowUseArcsInPolygons=false)
Build a polygon set with holes from a PCB_SHAPE list.
bool BuildBoardPolygonOutlines(BOARD *aBoard, SHAPE_POLY_SET &aOutlines, int aErrorMax, int aChainingEpsilon, bool aInferOutlineIfNecessary, OUTLINE_ERROR_HANDLER *aErrorHandler=nullptr, bool aAllowUseArcsInPolygons=false)
Extract the board outlines and build a closed polygon from lines, arcs and circle items on edge cut l...
const std::function< void(const wxString &msg, BOARD_ITEM *itemA, BOARD_ITEM *itemB, const VECTOR2I &pt)> OUTLINE_ERROR_HANDLER
bool BuildFootprintPolygonOutlines(BOARD *aBoard, SHAPE_POLY_SET &aOutlines, int aErrorMax, int aChainingEpsilon, OUTLINE_ERROR_HANDLER *aErrorHandler=nullptr)
Extract a board outline for a footprint view.
VECTOR2< int32_t > VECTOR2I
Definition vector2d.h:683