blob: a13a3ef5c0c689337070a8e5051ee54cdf67bf66 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#include <iostream>
#include "polygon.h"
Polygon::Polygon(double x, double y)
{
m_points.push_back(Point(x, y));
}
Polygon::Polygon(Point point)
{
m_points.push_back(point);
}
Polygon::Polygon(PointList points)
{
m_points = points;
}
void
Polygon::addPoint(Point point)
{
m_points.push_back(point);
}
Polygon
Polygon::doublePolygonScale(Polygon polygon)
{
Polygon result;
for (const auto &point : polygon.points())
result.addPoint(point * 2.0);
return result;
}
void
Polygon::stealOwnershipFromPython(Point* point)
{
delete point;
}
void
Polygon::stealOwnershipFromPython(Polygon* polygon)
{
delete polygon;
}
|