mirror of
https://git.mirrors.martin98.com/https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-30 23:32:00 +08:00
15 lines
332 B
C++
15 lines
332 B
C++
#ifndef slic3r_VoronoiOffset_hpp_
|
|
#define slic3r_VoronoiOffset_hpp_
|
|
|
|
#include "libslic3r.h"
|
|
|
|
#include "Geometry.hpp"
|
|
|
|
namespace Slic3r {
|
|
|
|
Polygons voronoi_offset(const Geometry::VoronoiDiagram &vd, const Lines &lines, double offset_distance, double discretization_error);
|
|
|
|
} // namespace Slic3r
|
|
|
|
#endif // slic3r_VoronoiOffset_hpp_
|