Slic3r/xs/src/SurfaceCollection.hpp

18 lines
233 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"
namespace Slic3r {
class SurfaceCollection
{
public:
Surfaces surfaces;
2013-11-22 05:16:10 +04:00
void simplify(double tolerance);
2013-07-14 16:56:43 +04:00
};
}
#endif