blob: a5207ab0074e6306fd665c3378d3f0ac27c2629e (
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
/**
* \file
* \brief PathVectorSatellites a class to manage a vector of satellites per piecewise node
*/ /*
* Authors:
* Jabiertxof
* Nathan Hurst
* Johan Engelen
* Josh Andler
* suv
* Mc-
* Liam P. White
* Krzysztof Kosiński
* This code is in public domain
*/
#include <helper/geom-pathvectorsatellites.h>
Geom::PathVector PathVectorSatellites::getPathVector() const
{
return _pathvector;
}
void PathVectorSatellites::setPathVector(Geom::PathVector pathv)
{
_pathvector = pathv;
}
Satellites PathVectorSatellites::getSatellites()
{
return _satellites;
}
void PathVectorSatellites::setSatellites(Satellites satellites)
{
_satellites = satellites;
}
size_t PathVectorSatellites::getTotalSatellites()
{
size_t counter = 0;
for (size_t i = 0; i < _satellites.size(); ++i) {
for (size_t j = 0; j < _satellites[i].size(); ++j) {
counter++;
}
}
return counter;
}
void PathVectorSatellites::recalculateForNewPathVector(Geom::PathVector const pathv, Satellite const S)
{
Satellites satellites;
for (size_t i = 0; i < pathv.size(); i++) {
std::vector<Satellite> subpath_satellites;
for (size_t k = 0; k < pathv[i].size_closed(); k++) {
subpath_satellites.push_back(S);
}
satellites.push_back(subpath_satellites);
}
setPathVector(pathv);
setSatellites(satellites);
}
/*
Local Variables:
mode:c++
c-file-style:"stroustrup"
c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
indent-tabs-mode:nil
fill-column:99
End:
*/
// vim:
// filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99
// :
|