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
|
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>
|
2015-07-02 14:09:43 +00:00
|
|
|
#include <geometry/shape_convex.h>
|
2014-05-14 13:53:54 +00:00
|
|
|
|
|
|
|
#define HULL_MARGIN 10
|
2013-09-18 17:55:16 +00:00
|
|
|
|
2015-02-18 00:29:54 +00:00
|
|
|
class PNS_ITEM;
|
|
|
|
|
2013-09-18 17:55:16 +00:00
|
|
|
/** Various utility functions */
|
|
|
|
|
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.
|
|
|
|
* @param convex The convex polygon.
|
|
|
|
* @param clearance The minimum distance between polygon and hull.
|
|
|
|
* @return A closed line chain describing the octagon.
|
|
|
|
*/
|
2015-07-02 14:11:15 +00:00
|
|
|
const SHAPE_LINE_CHAIN ConvexHull( const SHAPE_CONVEX& convex, 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 );
|
|
|
|
|
2015-02-18 16:53:46 +00:00
|
|
|
void DrawDebugPoint( VECTOR2I aP, int aColor );
|
|
|
|
void DrawDebugBox( BOX2I aB, int aColor );
|
|
|
|
void DrawDebugSeg( SEG aS, int aColor );
|
|
|
|
void DrawDebugDirs( VECTOR2D aP, int aMask, int aColor );
|
2015-02-18 00:29:54 +00:00
|
|
|
|
2015-02-18 16:53:46 +00:00
|
|
|
OPT_BOX2I ChangedArea( const PNS_ITEM* aItemA, const PNS_ITEM* aItemB );
|
2015-02-18 00:29:54 +00:00
|
|
|
|
2013-09-26 21:53:54 +00:00
|
|
|
#endif // __PNS_UTILS_H
|