mirror of
https://github.com/FULU-Foundation/OrcaSlicer-bambulab.git
synced 2026-05-25 20:19:14 -07:00
32 lines
718 B
C++
32 lines
718 B
C++
#ifndef SLASUPPORTPOOL_HPP
|
|
#define SLASUPPORTPOOL_HPP
|
|
|
|
#include <vector>
|
|
|
|
namespace Slic3r {
|
|
|
|
class ExPolygon;
|
|
class TriangleMesh;
|
|
|
|
namespace sla {
|
|
|
|
using ExPolygons = std::vector<ExPolygon>;
|
|
|
|
/// Calculate the polygon representing the slice of the lowest layer of mesh
|
|
void ground_layer(const TriangleMesh& mesh,
|
|
ExPolygons& output,
|
|
float height = 0.1f);
|
|
|
|
/// Calculate the pool for the mesh for SLA printing
|
|
void create_base_pool(const ExPolygons& ground_layer,
|
|
TriangleMesh& output_mesh,
|
|
double min_wall_thickness_mm = 4,
|
|
double min_wall_height_mm = 5
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif // SLASUPPORTPOOL_HPP
|