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-17 19:27:07 +0300
committerbubnikv <bubnikv@gmail.com>2018-08-17 19:27:07 +0300
commitab60d8adb4831a3cbbd3dfeebd798532873b6ef3 (patch)
treedd53ee93a2638f8e9de622f94cc314e3e803546f /xs/src/libslic3r/Point.hpp
parent9e7634b6e8370bb63e92c91ff87f88f0a98b06c0 (diff)
Replaced coincides_with(const Line &line) with operator==
Diffstat (limited to 'xs/src/libslic3r/Point.hpp')
-rw-r--r--xs/src/libslic3r/Point.hpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/xs/src/libslic3r/Point.hpp b/xs/src/libslic3r/Point.hpp
index c53c10f4d..19c1ac368 100644
--- a/xs/src/libslic3r/Point.hpp
+++ b/xs/src/libslic3r/Point.hpp
@@ -269,7 +269,6 @@ public:
typedef coordf_t coord_type;
explicit Pointf3() { (*this)(0) = (*this)(1) = (*this)(2) = 0.; }
-// explicit Pointf3(coord_t x, coord_t y, coord_t z) { (*this)(0) = x; (*this)(1) = y; (*this)(2) = z; }
explicit Pointf3(coordf_t x, coordf_t y, coordf_t z) { (*this)(0) = x; (*this)(1) = y; (*this)(2) = z; }
// This constructor allows you to construct Pointf from Eigen expressions
template<typename OtherDerived>