mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-06-28 14:41:58 +00:00
16 lines
308 B
C++
16 lines
308 B
C++
#ifndef RASTERTOPOLYGONS_HPP
|
|
#define RASTERTOPOLYGONS_HPP
|
|
|
|
#include "libslic3r/ExPolygon.hpp"
|
|
|
|
namespace Slic3r {
|
|
namespace sla {
|
|
|
|
class RasterGrayscaleAA;
|
|
|
|
ExPolygons raster_to_polygons(const RasterGrayscaleAA &rst, Vec2i32 windowsize = {2, 2});
|
|
|
|
}} // namespace Slic3r::sla
|
|
|
|
#endif // RASTERTOPOLYGONS_HPP
|