mirror of
https://github.com/FULU-Foundation/OrcaSlicer-bambulab.git
synced 2026-05-14 13:02:39 -07:00
32 lines
807 B
C++
32 lines
807 B
C++
#ifndef slic3r_SurfaceCollection_hpp_
|
|
#define slic3r_SurfaceCollection_hpp_
|
|
|
|
#include "libslic3r.h"
|
|
#include "Surface.hpp"
|
|
#include <vector>
|
|
|
|
namespace Slic3r {
|
|
|
|
class SurfaceCollection
|
|
{
|
|
public:
|
|
Surfaces surfaces;
|
|
|
|
SurfaceCollection() {};
|
|
SurfaceCollection(const Surfaces &_surfaces)
|
|
: surfaces(_surfaces) {};
|
|
operator Polygons() const;
|
|
operator ExPolygons() const;
|
|
void simplify(double tolerance);
|
|
void group(std::vector<SurfacesPtr> *retval);
|
|
template <class T> bool any_internal_contains(const T &item) const;
|
|
template <class T> bool any_bottom_contains(const T &item) const;
|
|
SurfacesPtr filter_by_type(SurfaceType type);
|
|
void filter_by_type(SurfaceType type, Polygons* polygons);
|
|
void append(const SurfaceCollection &coll);
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|