2018-08-09 18:11:23 +02:00
|
|
|
#ifndef SLASUPPORTPOOL_HPP
|
|
|
|
|
#define SLASUPPORTPOOL_HPP
|
|
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
|
|
namespace Slic3r {
|
|
|
|
|
|
|
|
|
|
class ExPolygon;
|
|
|
|
|
class TriangleMesh;
|
|
|
|
|
|
|
|
|
|
namespace sla {
|
|
|
|
|
|
2018-08-13 18:23:49 +02:00
|
|
|
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
|
2018-08-13 18:23:49 +02:00
|
|
|
void ground_layer(const TriangleMesh& mesh,
|
|
|
|
|
ExPolygons& output,
|
2018-08-16 17:47:05 +02:00
|
|
|
float height = 0.1f);
|
2018-08-09 18:11:23 +02:00
|
|
|
|
|
|
|
|
/// Calculate the pool for the mesh for SLA printing
|
2018-08-13 18:23:49 +02:00
|
|
|
void create_base_pool(const ExPolygons& ground_layer,
|
2018-08-16 17:47:05 +02:00
|
|
|
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-16 17:47:05 +02:00
|
|
|
);
|
2018-08-09 18:11:23 +02:00
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif // SLASUPPORTPOOL_HPP
|