mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-09 07:56:24 -06:00
18 lines
519 B
C++
18 lines
519 B
C++
#ifndef slic3r_SupportCommon_hpp_
|
|
#define slic3r_SupportCommon_hpp_
|
|
|
|
namespace Slic3r {
|
|
|
|
class SupportGeneratorLayer;
|
|
class SupportLayer;
|
|
|
|
namespace FFFSupport {
|
|
|
|
void export_print_z_polygons_to_svg(const char *path, SupportGeneratorLayer ** const layers, size_t n_layers);
|
|
void export_print_z_polygons_and_extrusions_to_svg(const char *path, SupportGeneratorLayer ** const layers, size_t n_layers, SupportLayer& support_layer);
|
|
|
|
} // namespace FFFSupport
|
|
|
|
} // namespace Slic3r
|
|
|
|
#endif /* slic3r_SupportCommon_hpp_ */
|