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:
Diffstat (limited to 'xs/src/Point.hpp')
-rw-r--r--xs/src/Point.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/xs/src/Point.hpp b/xs/src/Point.hpp
index 3b7a5e5dd..eedd73fde 100644
--- a/xs/src/Point.hpp
+++ b/xs/src/Point.hpp
@@ -13,7 +13,7 @@ class Point
public:
unsigned long x;
unsigned long y;
- Point(unsigned long _x, unsigned long _y): x(_x), y(_y) {};
+ Point(unsigned long _x = 0, unsigned long _y = 0): x(_x), y(_y) {};
~Point();
SV* _toPerl();
};