Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortamasmeszaros <meszaros.q@gmail.com>2018-12-11 17:54:54 +0300
committertamasmeszaros <meszaros.q@gmail.com>2018-12-11 17:54:54 +0300
commitb31c62e044f773487ae21dd70578e13513803539 (patch)
treee82c58c93a9a40feb36ee4b798a3ba14b24218aa /sandboxes
parente1cea03cda35418603c948f982e300b2ec9c7d1a (diff)
Added cancellation points to pad creation step.
Diffstat (limited to 'sandboxes')
-rw-r--r--sandboxes/slabasebed/slabasebed.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/sandboxes/slabasebed/slabasebed.cpp b/sandboxes/slabasebed/slabasebed.cpp
index 255ce2cc3..9804ea3c9 100644
--- a/sandboxes/slabasebed/slabasebed.cpp
+++ b/sandboxes/slabasebed/slabasebed.cpp
@@ -1,10 +1,10 @@
#include <iostream>
#include <string>
-#include <libslic3r.h>
-#include "TriangleMesh.hpp"
-#include "SLABasePool.hpp"
-#include "benchmark.h"
+#include <libslic3r/libslic3r.h>
+#include <libslic3r/TriangleMesh.hpp>
+#include <libslic3r/SLA/SLABasePool.hpp>
+#include <libnest2d/tools/benchmark.h>
const std::string USAGE_STR = {
"Usage: slabasebed stlfilename.stl"
@@ -28,7 +28,7 @@ int main(const int argc, const char *argv[]) {
ExPolygons ground_slice;
TriangleMesh basepool;
- sla::ground_layer(model, ground_slice, 0.1f);
+ sla::base_plate(model, ground_slice, 0.1f);
bench.start();
sla::create_base_pool(ground_slice, basepool);