mirror of
https://github.com/FULU-Foundation/OrcaSlicer-bambulab.git
synced 2026-07-11 08:04:25 +00:00
18 lines
424 B
C++
18 lines
424 B
C++
#ifndef HOLLOWINGFILTER_HPP
|
|
#define HOLLOWINGFILTER_HPP
|
|
|
|
#include <libslic3r/OpenVDBUtils.hpp>
|
|
|
|
namespace Slic3r {
|
|
namespace sla {
|
|
|
|
TriangleMesh generate_interior(const TriangleMesh &mesh,
|
|
double min_thickness,
|
|
double quality = 0.5,
|
|
double flatness = 0.5);
|
|
|
|
}
|
|
}
|
|
|
|
#endif // HOLLOWINGFILTER_H
|