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

nfp_svgnest_glue.hpp « tools « libnest2d « src « xs - github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ea1fb4d0764d37e304b5caf53a06037dcdc60ab4 (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
75
#ifndef NFP_SVGNEST_GLUE_HPP
#define NFP_SVGNEST_GLUE_HPP

#include "nfp_svgnest.hpp"

#include <libnest2d/clipper_backend/clipper_backend.hpp>

namespace libnest2d {

namespace __svgnest {

//template<> struct _Tol<double> {
//    static const BP2D_CONSTEXPR TCoord<PointImpl> Value = 1000000;
//};

}

namespace nfp {

using NfpR = NfpResult<PolygonImpl>;

template<> struct NfpImpl<PolygonImpl, NfpLevel::CONVEX_ONLY> {
    NfpR operator()(const PolygonImpl& sh, const PolygonImpl& cother) {
//        return nfpConvexOnly(sh, cother);
        namespace sl = shapelike;
        using alg = __svgnest::_alg<PolygonImpl>;

        auto nfp_p = alg::noFitPolygon(sl::getContour(sh),
                                       sl::getContour(cother), false, false);

        PolygonImpl nfp_cntr;
        if(!nfp_p.empty()) nfp_cntr.Contour = nfp_p.front();
        return {nfp_cntr, referenceVertex(nfp_cntr)};
    }
};

template<> struct NfpImpl<PolygonImpl, NfpLevel::ONE_CONVEX> {
    NfpR operator()(const PolygonImpl& sh, const PolygonImpl& cother) {
//        return nfpConvexOnly(sh, cother);
        namespace sl = shapelike;
        using alg = __svgnest::_alg<PolygonImpl>;

        std::cout << "Itt vagyok" << std::endl;
        auto nfp_p = alg::noFitPolygon(sl::getContour(sh),
                                       sl::getContour(cother), false, false);

        PolygonImpl nfp_cntr;
        nfp_cntr.Contour = nfp_p.front();
        return {nfp_cntr, referenceVertex(nfp_cntr)};
    }
};

template<>
struct NfpImpl<PolygonImpl, NfpLevel::BOTH_CONCAVE> {
    NfpR operator()(const PolygonImpl& sh, const PolygonImpl& cother) {
        namespace sl = shapelike;
        using alg = __svgnest::_alg<PolygonImpl>;

        auto nfp_p = alg::noFitPolygon(sl::getContour(sh),
                                       sl::getContour(cother), true, false);

        PolygonImpl nfp_cntr;
        nfp_cntr.Contour = nfp_p.front();
        return {nfp_cntr, referenceVertex(nfp_cntr)};
    }
};

template<> struct MaxNfpLevel<PolygonImpl> {
//    static const BP2D_CONSTEXPR NfpLevel value = NfpLevel::BOTH_CONCAVE;
        static const BP2D_CONSTEXPR NfpLevel value = NfpLevel::CONVEX_ONLY;
};

}}

#endif // NFP_SVGNEST_GLUE_HPP