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

29 lines
585 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 = .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-09 18:11:23 +02:00
}
}
#endif // SLASUPPORTPOOL_HPP