KiCad PCB EDA Suite
shape_segment.cpp
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 (C) 2017 CERN
5
* @author Tomasz Wlostowski <tomasz.wlostowski@cern.ch>
6
*
7
* This program is free software; you can redistribute it and/or
8
* modify it under the terms of the GNU General Public License
9
* as published by the Free Software Foundation; either version 2
10
* of the License, or (at your option) any later version.
11
*
12
* This program is distributed in the hope that it will be useful,
13
* but WITHOUT ANY WARRANTY; without even the implied warranty of
14
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
* GNU General Public License for more details.
16
*
17
* You should have received a copy of the GNU General Public License
18
* along with this program; if not, you may find one here:
19
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
20
* or you may search the http://www.gnu.org website for the version 2 license,
21
* or you may write to the Free Software Foundation, Inc.,
22
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
23
*/
24
25
#include <sstream>
26
27
#include <
geometry/shape_segment.h
>
28
29
const
std::string
SHAPE_SEGMENT::Format
()
const
30
{
31
std::stringstream ss;
32
33
ss <<
"SHAPE_SEGMENT( VECTOR2I( "
;
34
ss <<
m_seg
.
A
.
x
;
35
ss <<
", "
;
36
ss <<
m_seg
.
A
.
y
;
37
ss <<
"), VECTOR2I( "
;
38
ss <<
m_seg
.
B
.
x
;
39
ss <<
", "
;
40
ss <<
m_seg
.
B
.
y
;
41
ss <<
"), "
;
42
ss <<
m_width
;
43
ss <<
"); "
;
44
45
return
ss.str();
46
}
SHAPE_SEGMENT::Format
virtual const std::string Format() const override
Definition:
shape_segment.cpp:29
SHAPE_SEGMENT::m_width
int m_width
Definition:
shape_segment.h:165
VECTOR2::y
T y
Definition:
vector2d.h:82
VECTOR2::x
T x
Definition:
vector2d.h:82
SEG::A
VECTOR2I A
Definition:
seg.h:49
SHAPE_SEGMENT::m_seg
SEG m_seg
Definition:
shape_segment.h:164
shape_segment.h
SEG::B
VECTOR2I B
Definition:
seg.h:50
libs
kimath
src
geometry
shape_segment.cpp
Generated on Tue Apr 20 2021 04:12:58 for KiCad PCB EDA Suite by
1.8.15