2013-07-14 12:56:43 +00:00
|
|
|
#ifndef slic3r_SurfaceCollection_hpp_
|
|
|
|
#define slic3r_SurfaceCollection_hpp_
|
|
|
|
|
|
|
|
#include "Surface.hpp"
|
|
|
|
|
|
|
|
namespace Slic3r {
|
|
|
|
|
|
|
|
class SurfaceCollection
|
|
|
|
{
|
|
|
|
public:
|
2013-08-08 00:10:34 +00:00
|
|
|
Surfaces surfaces;
|
2013-11-22 01:16:10 +00:00
|
|
|
void simplify(double tolerance);
|
2013-07-14 12:56:43 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|