Files
OrcaSlicer-bambulab/src/libslic3r/SLABasePool.hpp
T

33 lines
775 B
C++
Raw Normal View History

2018-08-09 18:11:23 +02:00
#ifndef SLASUPPORTPOOL_HPP
#define SLASUPPORTPOOL_HPP
#include <vector>
namespace Slic3r {
class ExPolygon;
class TriangleMesh;
namespace sla {
using ExPolygons = std::vector<ExPolygon>;
2018-08-09 18:11:23 +02:00
/// Calculate the polygon representing the slice of the lowest layer of mesh
void ground_layer(const TriangleMesh& mesh,
ExPolygons& output,
float height = 0.1f);
2018-08-09 18:11:23 +02:00
/// Calculate the pool for the mesh for SLA printing
void create_base_pool(const ExPolygons& ground_layer,
TriangleMesh& output_mesh,
2018-08-28 10:52:18 +02:00
double min_wall_thickness_mm = 2,
double min_wall_height_mm = 5,
double max_merge_distance_mm = 50
);
2018-08-09 18:11:23 +02:00
}
}
#endif // SLASUPPORTPOOL_HPP