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

github.com/supermerill/SuperSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'xs/src/Layer.cpp')
-rw-r--r--xs/src/Layer.cpp40
1 files changed, 0 insertions, 40 deletions
diff --git a/xs/src/Layer.cpp b/xs/src/Layer.cpp
index 107ff1be7..689077d46 100644
--- a/xs/src/Layer.cpp
+++ b/xs/src/Layer.cpp
@@ -6,46 +6,6 @@
namespace Slic3r {
-LayerRegion::LayerRegion(Layer *layer, PrintRegion *region)
-: _layer(layer),
- _region(region)
-{
-}
-
-LayerRegion::~LayerRegion()
-{
-}
-
-Layer*
-LayerRegion::layer()
-{
- return this->_layer;
-}
-
-PrintRegion*
-LayerRegion::region()
-{
- return this->_region;
-}
-
-Flow
-LayerRegion::flow(FlowRole role, bool bridge, double width) const
-{
- return this->_region->flow(
- role,
- this->_layer->height,
- bridge,
- this->_layer->id() == 0,
- width,
- *this->_layer->object()
- );
-}
-
-#ifdef SLIC3RXS
-REGISTER_CLASS(LayerRegion, "Layer::Region");
-#endif
-
-
Layer::Layer(int id, PrintObject *object, coordf_t height, coordf_t print_z,
coordf_t slice_z)
: _id(id),