Slic3r/xs/src/SurfaceCollection.hpp

20 lines
327 B
C++
Raw Normal View History

2013-07-14 16:56:43 +04:00
#ifndef slic3r_SurfaceCollection_hpp_
#define slic3r_SurfaceCollection_hpp_
#include "Surface.hpp"
#include <vector>
2013-07-14 16:56:43 +04:00
namespace Slic3r {
class SurfaceCollection
{
public:
Surfaces surfaces;
2013-11-22 05:16:10 +04:00
void simplify(double tolerance);
void group(std::vector<SurfacesPtr> *retval, bool merge_solid = false);
2013-07-14 16:56:43 +04:00
};
}
#endif