19 lines
327 B
C++
19 lines
327 B
C++
#ifndef slic3r_SurfaceCollection_hpp_
|
|
#define slic3r_SurfaceCollection_hpp_
|
|
|
|
#include "Surface.hpp"
|
|
#include <vector>
|
|
|
|
namespace Slic3r {
|
|
|
|
class SurfaceCollection
|
|
{
|
|
public:
|
|
Surfaces surfaces;
|
|
void simplify(double tolerance);
|
|
void group(std::vector<SurfacesPtr> *retval, bool merge_solid = false);
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|