mirror of
https://git.mirrors.martin98.com/https://github.com/slic3r/Slic3r.git
synced 2025-10-04 09:36:35 +08:00
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";
|
|
}
|
|
}
|
|
|
|
}
|