Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Point.hpp « src « xs - github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3b7a5e5dd650cd65241ca0fa2a0ccd30a1d63a9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef slic3r_Point_hpp_
#define slic3r_Point_hpp_

extern "C" {
#include "EXTERN.h"
#include "perl.h"
#include "XSUB.h"
#include "ppport.h"
}

class Point
{
    public:
    unsigned long x;
    unsigned long y;
    Point(unsigned long _x, unsigned long _y): x(_x), y(_y) {};
    ~Point();
    SV* _toPerl();
};

#endif