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,
|
|
|
|
|
float height = .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,
|
|
|
|
|
TriangleMesh& output_mesh);
|
2018-08-09 18:11:23 +02:00
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif // SLASUPPORTPOOL_HPP
|