Horizon
Loading...
Searching...
No Matches
pns_solid.h
1/*
2 * KiRouter - a push-and-(sometimes-)shove PCB router
3 *
4 * Copyright (C) 2013 CERN
5 * Copyright (C) 2016-2021 KiCad Developers, see AUTHORS.txt for contributors.
6 * Author: Tomasz Wlostowski <tomasz.wlostowski@cern.ch>
7 *
8 * This program is free software: you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the
10 * Free Software Foundation, either version 3 of the License, or (at your
11 * option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License along
19 * with this program. If not, see <http://www.gnu.org/licenses/>.
20 */
21
22#ifndef __PNS_SOLID_H
23#define __PNS_SOLID_H
24
25#include <math/vector2d.h>
26
27#include <geometry/seg.h>
28#include <geometry/shape.h>
29#include <geometry/shape_line_chain.h>
30
31#include "pns_item.h"
32
33namespace PNS {
34
35class SOLID : public ITEM
36{
37public:
38 SOLID() :
39 ITEM( SOLID_T ),
40 m_shape( nullptr ),
41 m_hole( nullptr )
42 {
43 m_movable = false;
44 m_padToDie = 0;
45 m_orientation = 0;
46 }
47
48 ~SOLID()
49 {
50 delete m_shape;
51 delete m_hole;
52 }
53
54 SOLID( const SOLID& aSolid ) :
55 ITEM( aSolid )
56 {
57 if( aSolid.m_shape )
58 m_shape = aSolid.m_shape->Clone();
59 else
60 m_shape = nullptr;
61
62 if( aSolid.m_hole )
63 m_hole = aSolid.m_hole->Clone();
64 else
65 m_hole = nullptr;
66
67 m_pos = aSolid.m_pos;
68 m_padToDie = aSolid.m_padToDie;
69 m_orientation = aSolid.m_orientation;
70 }
71
72 static inline bool ClassOf( const ITEM* aItem )
73 {
74 return aItem && SOLID_T == aItem->Kind();
75 }
76
77 ITEM* Clone() const override;
78
79 const SHAPE* Shape() const override { return m_shape; }
80
81 const SHAPE* Hole() const override { return m_hole; }
82
83 const SHAPE_LINE_CHAIN Hull( int aClearance = 0, int aWalkaroundThickness = 0,
84 int aLayer = -1 ) const override;
85
86 const SHAPE_LINE_CHAIN HoleHull( int aClearance, int aWalkaroundThickness,
87 int aLayer ) const override;
88
89 void SetShape( SHAPE* shape )
90 {
91 delete m_shape;
92 m_shape = shape;
93 }
94
95 void SetHole( SHAPE* shape )
96 {
97 delete m_hole;
98 m_hole = shape;
99 }
100
101 const VECTOR2I& Pos() const { return m_pos; }
102 void SetPos( const VECTOR2I& aCenter );
103
104 int GetPadToDie() const { return m_padToDie; }
105 void SetPadToDie( int aLen ) { m_padToDie = aLen; }
106
107 virtual VECTOR2I Anchor( int aN ) const override
108 {
109 return m_pos;
110 }
111
112 virtual int AnchorCount() const override
113 {
114 return 1;
115 }
116
117 VECTOR2I Offset() const { return m_offset; }
118 void SetOffset( const VECTOR2I& aOffset ) { m_offset = aOffset; }
119
120 double GetOrientation() const { return m_orientation; }
121 void SetOrientation( double aOrientation ) { m_orientation = aOrientation; }
122
123private:
124 VECTOR2I m_pos;
125 SHAPE* m_shape;
126 SHAPE* m_hole;
127 VECTOR2I m_offset;
128 int m_padToDie;
129 double m_orientation; // in 1/10 degrees, matching PAD
130};
131
132}
133
134#endif
Base class for PNS router board items.
Definition pns_item.h:57
PnsKind Kind() const
Return the type (kind) of the item.
Definition pns_item.h:131
Definition pns_solid.h:36
const SHAPE * Shape() const override
Return the geometrical shape of the item.
Definition pns_solid.h:79
ITEM * Clone() const override
Return a deep copy of the item.
Definition pns_solid.cpp:170
Represent a polyline containing arcs as well as line segments: A chain of connected line and/or arc s...
Definition shape_line_chain.h:81
An abstract shape on 2D plane.
Definition shape.h:117
virtual SHAPE * Clone() const
Return a dynamically allocated copy of the shape.
Definition shape.h:139