Files
OrcaSlicer-bambulab/xs/src/SurfaceCollection.hpp
T

20 lines
301 B
C++
Raw Normal View History

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