mirror of
https://github.com/FULU-Foundation/OrcaSlicer-bambulab.git
synced 2026-08-22 20:13:10 +02: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";
|
|
}
|
|
}
|
|
|
|
}
|