217477a9ff
Fix compilation on Windows Fix array subscript out of range error in MarchingSquares Fix normals of mesh constructed from slices Improve performance of mesh construction from slices
16 lines
306 B
C++
16 lines
306 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, Vec2i windowsize = {2, 2});
|
|
|
|
}} // namespace Slic3r::sla
|
|
|
|
#endif // RASTERTOPOLYGONS_HPP
|