mirror of
https://git.mirrors.martin98.com/https://github.com/prusa3d/PrusaSlicer.git
synced 2025-08-13 23:15:58 +08:00
Move ColoredLine struct and related boost traits into the header file of MultiMaterialSegmentation.
This commit is contained in:
parent
fb84f3113a
commit
23b7c41857
@ -20,30 +20,7 @@
|
|||||||
#include <mutex>
|
#include <mutex>
|
||||||
#include <boost/thread/lock_guard.hpp>
|
#include <boost/thread/lock_guard.hpp>
|
||||||
|
|
||||||
namespace Slic3r {
|
|
||||||
struct ColoredLine {
|
|
||||||
Line line;
|
|
||||||
int color;
|
|
||||||
int poly_idx = -1;
|
|
||||||
int local_line_idx = -1;
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
#include <boost/polygon/polygon.hpp>
|
#include <boost/polygon/polygon.hpp>
|
||||||
namespace boost::polygon {
|
|
||||||
template <>
|
|
||||||
struct geometry_concept<Slic3r::ColoredLine> { typedef segment_concept type; };
|
|
||||||
|
|
||||||
template <>
|
|
||||||
struct segment_traits<Slic3r::ColoredLine> {
|
|
||||||
typedef coord_t coordinate_type;
|
|
||||||
typedef Slic3r::Point point_type;
|
|
||||||
|
|
||||||
static inline point_type get(const Slic3r::ColoredLine& line, const direction_1d& dir) {
|
|
||||||
return dir.to_int() ? line.line.b : line.line.a;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
//#define MMU_SEGMENTATION_DEBUG_GRAPH
|
//#define MMU_SEGMENTATION_DEBUG_GRAPH
|
||||||
//#define MMU_SEGMENTATION_DEBUG_REGIONS
|
//#define MMU_SEGMENTATION_DEBUG_REGIONS
|
||||||
|
@ -10,13 +10,41 @@
|
|||||||
|
|
||||||
namespace Slic3r {
|
namespace Slic3r {
|
||||||
|
|
||||||
|
|
||||||
class PrintObject;
|
class PrintObject;
|
||||||
class ExPolygon;
|
class ExPolygon;
|
||||||
|
using ExPolygons = std::vector<ExPolygon>;
|
||||||
|
|
||||||
|
struct ColoredLine
|
||||||
|
{
|
||||||
|
Line line;
|
||||||
|
int color;
|
||||||
|
int poly_idx = -1;
|
||||||
|
int local_line_idx = -1;
|
||||||
|
};
|
||||||
|
|
||||||
|
using ColoredLines = std::vector<ColoredLine>;
|
||||||
|
|
||||||
// Returns MMU segmentation based on painting in MMU segmentation gizmo
|
// Returns MMU segmentation based on painting in MMU segmentation gizmo
|
||||||
std::vector<std::vector<ExPolygons>> multi_material_segmentation_by_painting(const PrintObject &print_object, const std::function<void()> &throw_on_cancel_callback);
|
std::vector<std::vector<ExPolygons>> multi_material_segmentation_by_painting(const PrintObject &print_object, const std::function<void()> &throw_on_cancel_callback);
|
||||||
|
|
||||||
} // namespace Slic3r
|
} // namespace Slic3r
|
||||||
|
|
||||||
|
namespace boost::polygon {
|
||||||
|
template<> struct geometry_concept<Slic3r::ColoredLine>
|
||||||
|
{
|
||||||
|
typedef segment_concept type;
|
||||||
|
};
|
||||||
|
|
||||||
|
template<> struct segment_traits<Slic3r::ColoredLine>
|
||||||
|
{
|
||||||
|
typedef coord_t coordinate_type;
|
||||||
|
typedef Slic3r::Point point_type;
|
||||||
|
|
||||||
|
static inline point_type get(const Slic3r::ColoredLine &line, const direction_1d &dir)
|
||||||
|
{
|
||||||
|
return dir.to_int() ? line.line.b : line.line.a;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
} // namespace boost::polygon
|
||||||
|
|
||||||
#endif // slic3r_MultiMaterialSegmentation_hpp_
|
#endif // slic3r_MultiMaterialSegmentation_hpp_
|
||||||
|
Loading…
x
Reference in New Issue
Block a user