2018-08-16 15:47:05 +00:00
|
|
|
#include <iostream>
|
2019-02-13 15:44:48 +00:00
|
|
|
#include <fstream>
|
2018-08-16 15:47:05 +00:00
|
|
|
#include <string>
|
|
|
|
|
2018-12-11 14:54:54 +00:00
|
|
|
#include <libslic3r/libslic3r.h>
|
|
|
|
#include <libslic3r/TriangleMesh.hpp>
|
|
|
|
#include <libslic3r/SLA/SLABasePool.hpp>
|
2019-02-13 15:44:48 +00:00
|
|
|
#include <libslic3r/SLA/SLABoilerPlate.hpp>
|
2018-12-11 14:54:54 +00:00
|
|
|
#include <libnest2d/tools/benchmark.h>
|
2018-08-16 15:47:05 +00:00
|
|
|
|
|
|
|
const std::string USAGE_STR = {
|
|
|
|
"Usage: slabasebed stlfilename.stl"
|
|
|
|
};
|
|
|
|
|
2019-02-13 15:44:48 +00:00
|
|
|
namespace Slic3r { namespace sla {
|
|
|
|
|
|
|
|
Contour3D convert(const Polygons& triangles, coord_t z, bool dir);
|
2019-02-13 17:21:27 +00:00
|
|
|
Contour3D walls(const Polygon& floor_plate, const Polygon& ceiling,
|
2019-02-13 15:44:48 +00:00
|
|
|
double floor_z_mm, double ceiling_z_mm,
|
2019-02-13 17:21:27 +00:00
|
|
|
double offset_difference_mm, ThrowOnCancel thr);
|
2019-02-13 15:44:48 +00:00
|
|
|
|
|
|
|
void offset(ExPolygon& sh, coord_t distance);
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-16 15:47:05 +00:00
|
|
|
int main(const int argc, const char *argv[]) {
|
|
|
|
using namespace Slic3r;
|
|
|
|
using std::cout; using std::endl;
|
|
|
|
|
|
|
|
if(argc < 2) {
|
|
|
|
cout << USAGE_STR << endl;
|
|
|
|
return EXIT_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
TriangleMesh model;
|
|
|
|
Benchmark bench;
|
|
|
|
|
|
|
|
model.ReadSTLFile(argv[1]);
|
|
|
|
model.align_to_origin();
|
|
|
|
|
|
|
|
ExPolygons ground_slice;
|
2019-02-13 15:44:48 +00:00
|
|
|
sla::Contour3D mesh;
|
|
|
|
// TriangleMesh basepool;
|
2018-08-16 15:47:05 +00:00
|
|
|
|
2018-12-11 14:54:54 +00:00
|
|
|
sla::base_plate(model, ground_slice, 0.1f);
|
2018-08-16 15:47:05 +00:00
|
|
|
|
2019-02-13 15:44:48 +00:00
|
|
|
if(ground_slice.empty()) return EXIT_FAILURE;
|
|
|
|
|
|
|
|
ExPolygon bottom_plate = ground_slice.front();
|
|
|
|
ExPolygon top_plate = bottom_plate;
|
|
|
|
sla::offset(top_plate, coord_t(3.0/SCALING_FACTOR));
|
|
|
|
sla::offset(bottom_plate, coord_t(1.0/SCALING_FACTOR));
|
|
|
|
|
2018-08-16 15:47:05 +00:00
|
|
|
bench.start();
|
2019-02-13 15:44:48 +00:00
|
|
|
|
|
|
|
Polygons top_plate_triangles, bottom_plate_triangles;
|
|
|
|
top_plate.triangulate_p2t(&top_plate_triangles);
|
|
|
|
bottom_plate.triangulate_p2t(&bottom_plate_triangles);
|
|
|
|
|
|
|
|
auto top_plate_mesh = sla::convert(top_plate_triangles, coord_t(3.0/SCALING_FACTOR), false);
|
|
|
|
auto bottom_plate_mesh = sla::convert(bottom_plate_triangles, 0, true);
|
|
|
|
|
|
|
|
mesh.merge(bottom_plate_mesh);
|
|
|
|
mesh.merge(top_plate_mesh);
|
|
|
|
|
2019-02-13 17:21:27 +00:00
|
|
|
sla::Contour3D w = sla::walls(bottom_plate.contour, top_plate.contour, 0, 3, 2.0, [](){});
|
2019-02-13 15:44:48 +00:00
|
|
|
|
|
|
|
mesh.merge(w);
|
|
|
|
// sla::create_base_pool(ground_slice, basepool);
|
2018-08-16 15:47:05 +00:00
|
|
|
bench.stop();
|
|
|
|
|
|
|
|
cout << "Base pool creation time: " << std::setprecision(10)
|
|
|
|
<< bench.getElapsedSec() << " seconds." << endl;
|
|
|
|
|
2019-02-13 15:44:48 +00:00
|
|
|
// basepool.write_ascii("out.stl");
|
|
|
|
|
|
|
|
std::fstream outstream("out.obj", std::fstream::out);
|
|
|
|
mesh.to_obj(outstream);
|
2018-08-16 15:47:05 +00:00
|
|
|
|
|
|
|
return EXIT_SUCCESS;
|
|
|
|
}
|