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:
authorVojtech Bubnik <bubnikv@gmail.com>2021-04-23 12:44:25 +0300
committerVojtech Bubnik <bubnikv@gmail.com>2021-04-23 12:44:25 +0300
commit9f4e9da5c614e2333abb8ed70400ad2de2c29787 (patch)
tree2bcaea07af85fc5a0de1d882151bf02c0e7ded87 /tests/libslic3r
parent657d19482ba7ab6b01793d3232696889c25d2316 (diff)
parent1d588dad900720cf33fd48b9c1af30ae277cacf0 (diff)
Merge branch 'tm_vb_clipper_eigen'
Diffstat (limited to 'tests/libslic3r')
-rw-r--r--tests/libslic3r/test_elephant_foot_compensation.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/libslic3r/test_elephant_foot_compensation.cpp b/tests/libslic3r/test_elephant_foot_compensation.cpp
index 4e340c37a..a1c23f4a9 100644
--- a/tests/libslic3r/test_elephant_foot_compensation.cpp
+++ b/tests/libslic3r/test_elephant_foot_compensation.cpp
@@ -26,7 +26,7 @@ namespace Slic3r {
pt.Y += CLIPPER_OFFSET_SCALE_ROUNDING_DELTA;
pt.X >>= CLIPPER_OFFSET_POWER_OF_2;
pt.Y >>= CLIPPER_OFFSET_POWER_OF_2;
- out.emplace_back(coord_t(pt.X), coord_t(pt.Y));
+ out.emplace_back(coord_t(pt.x()), coord_t(pt.y()));
}
return out;
}