14 lines
223 B
C++
14 lines
223 B
C++
![]() |
#include "SurfaceCollection.hpp"
|
||
|
|
||
|
namespace Slic3r {
|
||
|
|
||
|
void
|
||
|
simplify(double tolerance)
|
||
|
{
|
||
|
for (Surfaces::iterator it = this->surfaces.begin(); it != this->surfaces.end(); ++it) {
|
||
|
throw "Unimplemented";
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|