mirror of
https://github.com/FULU-Foundation/OrcaSlicer-bambulab.git
synced 2026-07-13 08:24:27 +00:00
16 lines
276 B
C++
16 lines
276 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, float accuracy = 1.f);
|
|
|
|
}}
|
|
|
|
#endif // RASTERTOPOLYGONS_HPP
|