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:
authorAlessandro Ranellucci <aar@cpan.org>2015-12-08 02:39:54 +0300
committerAlessandro Ranellucci <aar@cpan.org>2015-12-08 02:39:54 +0300
commit4913e90e100c093e81dd77f31e2cf39d844b9055 (patch)
tree2cbb9ded96107eb6db6d0ffdfd12b6ae33501976 /xs/src/libslic3r/Point.hpp
parent3fac8cd77e76da982219049629f3d9190cfcfbbf (diff)
Remove any Perl related code from libslic3r
Diffstat (limited to 'xs/src/libslic3r/Point.hpp')
-rw-r--r--xs/src/libslic3r/Point.hpp14
1 files changed, 1 insertions, 13 deletions
diff --git a/xs/src/libslic3r/Point.hpp b/xs/src/libslic3r/Point.hpp
index a0e382fb3..1a5bd641e 100644
--- a/xs/src/libslic3r/Point.hpp
+++ b/xs/src/libslic3r/Point.hpp
@@ -1,7 +1,7 @@
#ifndef slic3r_Point_hpp_
#define slic3r_Point_hpp_
-#include <myinit.h>
+#include "libslic3r.h"
#include <vector>
#include <math.h>
#include <string>
@@ -60,12 +60,6 @@ class Point
Point projection_onto(const Line &line) const;
Point negative() const;
Vector vector_to(const Point &point) const;
-
- #ifdef SLIC3RXS
- void from_SV(SV* point_sv);
- void from_SV_check(SV* point_sv);
- SV* to_SV_pureperl() const;
- #endif
};
Point operator+(const Point& point1, const Point& point2);
@@ -98,12 +92,6 @@ class Pointf
void rotate(double angle, const Pointf &center);
Pointf negative() const;
Vectorf vector_to(const Pointf &point) const;
-
- #ifdef SLIC3RXS
- bool from_SV(SV* point_sv);
- bool from_SV_check(SV* point_sv);
- SV* to_SV_pureperl() const;
- #endif
};
class Pointf3 : public Pointf