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:
authorAlessandro Ranellucci <aar@cpan.org>2014-11-23 22:14:13 +0300
committerAlessandro Ranellucci <aar@cpan.org>2014-11-23 22:14:13 +0300
commit634bc09e2c1592ae993d3ecb800bd16aaaaf7069 (patch)
tree91e16cd4c9b987882e33b2911a67507672f150ad /xs/src/libslic3r/Geometry.hpp
parent5deadc8f123e1a67886de8efffd52f177465bd11 (diff)
Refactoring: renamed all contains_*() methods to contains() in C++
Diffstat (limited to 'xs/src/libslic3r/Geometry.hpp')
-rw-r--r--xs/src/libslic3r/Geometry.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/xs/src/libslic3r/Geometry.hpp b/xs/src/libslic3r/Geometry.hpp
index a5ef6d97c..e7f2f08f3 100644
--- a/xs/src/libslic3r/Geometry.hpp
+++ b/xs/src/libslic3r/Geometry.hpp
@@ -17,7 +17,7 @@ void chained_path(const Points &points, std::vector<Points::size_type> &retval,
void chained_path(const Points &points, std::vector<Points::size_type> &retval);
template<class T> void chained_path_items(Points &points, T &items, T &retval);
bool directions_parallel(double angle1, double angle2, double max_diff = 0);
-template<class T> bool contains_point(const std::vector<T> &vector, const Point &point);
+template<class T> bool contains(const std::vector<T> &vector, const Point &point);
double rad2deg(double angle);
double rad2deg_dir(double angle);
double deg2rad(double angle);