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>2019-07-17 18:19:42 +0300
committertamasmeszaros <meszaros.q@gmail.com>2019-07-17 18:19:42 +0300
commitc82fb9c84fa9a72b41e8cad8445f65b4b4038b06 (patch)
tree4deb218505c9bd6cf8dcd9efe58181e7d43619b4 /src/libnest2d
parentaff1863aed6450c05712b59847571052cdff8c1e (diff)
libnest2d: Remove old preload method from selector interface
Diffstat (limited to 'src/libnest2d')
-rw-r--r--src/libnest2d/include/libnest2d/libnest2d.hpp11
-rw-r--r--src/libnest2d/include/libnest2d/selections/selection_boilerplate.hpp2
2 files changed, 0 insertions, 13 deletions
diff --git a/src/libnest2d/include/libnest2d/libnest2d.hpp b/src/libnest2d/include/libnest2d/libnest2d.hpp
index d91b3c8f9..d0d91838f 100644
--- a/src/libnest2d/include/libnest2d/libnest2d.hpp
+++ b/src/libnest2d/include/libnest2d/libnest2d.hpp
@@ -737,17 +737,6 @@ public:
return impl_.getResult();
}
- /**
- * @brief Loading a group of already packed bins. It is best to use a result
- * from a previous packing. The algorithm will consider this input as if the
- * objects are already packed and not move them. If any of these items are
- * outside the bin, it is up to the placer algorithm what will happen.
- * Packing additional items can fail for the bottom-left and nfp placers.
- * @param pckgrp A packgroup which is a vector of item vectors. Each item
- * vector corresponds to a packed bin.
- */
- inline void preload(const PackGroup& pckgrp) { impl_.preload(pckgrp); }
-
void clear() { impl_.clear(); }
};
diff --git a/src/libnest2d/include/libnest2d/selections/selection_boilerplate.hpp b/src/libnest2d/include/libnest2d/selections/selection_boilerplate.hpp
index fd6577d97..9ae92fe29 100644
--- a/src/libnest2d/include/libnest2d/selections/selection_boilerplate.hpp
+++ b/src/libnest2d/include/libnest2d/selections/selection_boilerplate.hpp
@@ -22,8 +22,6 @@ public:
inline void stopCondition(StopCondition cond) { stopcond_ = cond; }
- inline void preload(const PackGroup& pckgrp) { packed_bins_ = pckgrp; }
-
inline void clear() { packed_bins_.clear(); }
protected: