Welcome to mirror list, hosted at ThFree Co, Russian Federation.

RasterToPolygons.hpp « SLA « libslic3r « src - github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c0e1f41145c38e811404395c328e2d1a69c7539d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef RASTERTOPOLYGONS_HPP
#define RASTERTOPOLYGONS_HPP

#include "libslic3r/ExPolygon.hpp"

namespace Slic3r {
namespace sla {

class RasterGrayscaleAA;

ExPolygons raster_to_polygons(const RasterGrayscaleAA &rst, Vec2i windowsize = {2, 2});

}} // namespace Slic3r::sla

#endif // RASTERTOPOLYGONS_HPP