mirror of
https://github.com/FULU-Foundation/OrcaSlicer-bambulab.git
synced 2026-09-07 11:23:48 +02:00
22 lines
321 B
C++
22 lines
321 B
C++
#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
|