Welcome to mirror list, hosted at ThFree Co, Russian Federation.

PolylineCollection.cpp « src « xs - github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 34eebf58063a6e31e9b21f888184eeb21d10c0ea (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
#include "PolylineCollection.hpp"

namespace Slic3r {

PolylineCollection*
PolylineCollection::chained_path(bool no_reverse) const
{
    if (this->polylines.empty()) return new PolylineCollection ();
    return this->chained_path_from(this->polylines.front().first_point(), no_reverse);
}

PolylineCollection*
PolylineCollection::chained_path_from(const Point* start_near, bool no_reverse) const
{
    PolylineCollection* retval = new PolylineCollection;
    Polylines my_paths = this->polylines;
    
    Points endpoints;
    for (Polylines::const_iterator it = my_paths.begin(); it != my_paths.end(); ++it) {
        endpoints.push_back(*(*it).first_point());
        if (no_reverse) {
            endpoints.push_back(*(*it).first_point());
        } else {
            endpoints.push_back(*(*it).last_point());
        }
    }
    
    while (!my_paths.empty()) {
        // find nearest point
        int start_index = start_near->nearest_point_index(endpoints);
        int path_index = start_index/2;
        if (start_index % 2 && !no_reverse) {
            my_paths.at(path_index).reverse();
        }
        retval->polylines.push_back(my_paths.at(path_index));
        my_paths.erase(my_paths.begin() + path_index);
        endpoints.erase(endpoints.begin() + 2*path_index, endpoints.begin() + 2*path_index + 2);
        start_near = retval->polylines.back().last_point();
    }
    
    return retval;
}

}