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:
authorbubnikv <bubnikv@gmail.com>2018-08-21 22:05:24 +0300
committerbubnikv <bubnikv@gmail.com>2018-08-21 22:05:24 +0300
commit0b5b02e0027b9994e26f5b719355d6e08bb4b2db (patch)
treeab5b67985ed18e2b45fc7fe36c8c8b35a3026bae /xs/src/libslic3r/PrintObject.cpp
parentcae08061129066bf4a225f8f4af4920cf49af7eb (diff)
Eradicated the Pointf class, replaced with Eigen Vector3d
Diffstat (limited to 'xs/src/libslic3r/PrintObject.cpp')
-rw-r--r--xs/src/libslic3r/PrintObject.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/xs/src/libslic3r/PrintObject.cpp b/xs/src/libslic3r/PrintObject.cpp
index 10ebcb18e..54f7cb30a 100644
--- a/xs/src/libslic3r/PrintObject.cpp
+++ b/xs/src/libslic3r/PrintObject.cpp
@@ -59,7 +59,7 @@ PrintObject::PrintObject(Print* print, ModelObject* model_object, const Bounding
this->layer_height_profile = model_object->layer_height_profile;
}
-bool PrintObject::add_copy(const Pointf &point)
+bool PrintObject::add_copy(const Vec2d &point)
{
Points points = this->_copies;
points.push_back(Point::new_scale(point(0), point(1)));