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

TriangulateWall.hpp « libslic3r « src - github.com/supermerill/SuperSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 68bf4b0ac6c3c887283c52aa2606212c8e0b140d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef TRIANGULATEWALL_HPP
#define TRIANGULATEWALL_HPP

#include "libslic3r/Polygon.hpp"

namespace Slic3r {

using Wall = std::pair<std::vector<Vec3d>, std::vector<Vec3i>>;

Wall triangulate_wall(
    const Polygon &       lower,
    const Polygon &       upper,
    double                lower_z_mm,
    double                upper_z_mm);
}

#endif // TRIANGULATEWALL_HPP