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
|
2016-08-29 14:38:11 +00:00
|
|
|
* Copyright (C) 2016 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
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __PNS_UTILS_H
|
|
|
|
#define __PNS_UTILS_H
|
|
|
|
|
|
|
|
#include <math/vector2d.h>
|
2015-02-18 00:29:54 +00:00
|
|
|
#include <math/box2.h>
|
2013-09-18 17:55:16 +00:00
|
|
|
#include <geometry/shape_line_chain.h>
|
2014-05-14 13:53:54 +00:00
|
|
|
#include <geometry/shape_segment.h>
|
|
|
|
#include <geometry/shape_rect.h>
|
2020-01-07 17:12:59 +00:00
|
|
|
#include <geometry/shape_simple.h>
|
2014-05-14 13:53:54 +00:00
|
|
|
|
2016-08-29 14:38:11 +00:00
|
|
|
namespace PNS {
|
|
|
|
|
|
|
|
constexpr int HULL_MARGIN = 10;
|
2013-09-18 17:55:16 +00:00
|
|
|
|
2016-08-29 17:31:13 +00:00
|
|
|
class ITEM;
|
2016-08-30 15:28:35 +00:00
|
|
|
class LINE;
|
2015-02-18 00:29:54 +00:00
|
|
|
|
2013-09-18 17:55:16 +00:00
|
|
|
/** Various utility functions */
|
|
|
|
|
2019-05-17 00:13:21 +00:00
|
|
|
const SHAPE_LINE_CHAIN ArcHull( const SHAPE_ARC& aSeg, int aClearance, int aWalkaroundThickness );
|
|
|
|
|
2013-09-26 21:53:54 +00:00
|
|
|
const SHAPE_LINE_CHAIN OctagonalHull( const VECTOR2I& aP0, const VECTOR2I& aSize,
|
2014-05-16 11:37:31 +00:00
|
|
|
int aClearance, int aChamfer );
|
2013-09-18 17:55:16 +00:00
|
|
|
|
2015-07-02 14:11:15 +00:00
|
|
|
const SHAPE_LINE_CHAIN SegmentHull( const SHAPE_SEGMENT& aSeg, int aClearance,
|
|
|
|
int aWalkaroundThickness );
|
2014-05-14 13:53:54 +00:00
|
|
|
|
2015-07-02 14:09:43 +00:00
|
|
|
/**
|
|
|
|
* Function ConvexHull()
|
|
|
|
*
|
|
|
|
* Creates an octagonal hull around a convex polygon.
|
2017-06-22 07:01:29 +00:00
|
|
|
* @param aConvex The convex polygon.
|
|
|
|
* @param aClearance The minimum distance between polygon and hull.
|
2015-07-02 14:09:43 +00:00
|
|
|
* @return A closed line chain describing the octagon.
|
|
|
|
*/
|
2018-05-03 17:52:42 +00:00
|
|
|
const SHAPE_LINE_CHAIN ConvexHull( const SHAPE_SIMPLE& aConvex, int aClearance );
|
2015-07-02 14:09:43 +00:00
|
|
|
|
2014-05-14 13:53:54 +00:00
|
|
|
SHAPE_RECT ApproximateSegmentAsRect( const SHAPE_SEGMENT& aSeg );
|
|
|
|
|
2016-08-30 15:28:35 +00:00
|
|
|
OPT_BOX2I ChangedArea( const ITEM* aItemA, const ITEM* aItemB );
|
|
|
|
OPT_BOX2I ChangedArea( const LINE& aLineA, const LINE& aLineB );
|
2016-08-15 15:16:48 +00:00
|
|
|
|
2021-05-27 21:57:28 +00:00
|
|
|
void HullIntersection( const SHAPE_LINE_CHAIN& hull, const SHAPE_LINE_CHAIN& line,
|
|
|
|
SHAPE_LINE_CHAIN::INTERSECTIONS& ips );
|
|
|
|
|
2022-08-30 12:52:34 +00:00
|
|
|
const SHAPE_LINE_CHAIN BuildHullForPrimitiveShape( const SHAPE* aShape, int aClearance,
|
|
|
|
int aWalkaroundThickness );
|
2015-02-18 00:29:54 +00:00
|
|
|
|
2016-08-29 14:38:11 +00:00
|
|
|
}
|
|
|
|
|
2013-09-26 21:53:54 +00:00
|
|
|
#endif // __PNS_UTILS_H
|