2021-04-20 13:07:00 +00:00
|
|
|
#ifndef slic3r_MultiMaterialSegmentation_hpp_
|
|
|
|
#define slic3r_MultiMaterialSegmentation_hpp_
|
|
|
|
|
|
|
|
#include <utility>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
namespace Slic3r {
|
|
|
|
|
|
|
|
|
|
|
|
class PrintObject;
|
|
|
|
class ExPolygon;
|
|
|
|
|
|
|
|
// Returns MMU segmentation based on painting in MMU segmentation gizmo
|
2021-11-05 09:07:21 +00:00
|
|
|
std::vector<std::vector<ExPolygons>> multi_material_segmentation_by_painting(const PrintObject &print_object, const std::function<void()> &throw_on_cancel_callback);
|
2021-04-20 13:07:00 +00:00
|
|
|
|
|
|
|
} // namespace Slic3r
|
|
|
|
|
|
|
|
#endif // slic3r_MultiMaterialSegmentation_hpp_
|