mirror of
https://github.com/FULU-Foundation/OrcaSlicer-bambulab.git
synced 2026-05-14 13:02:39 -07:00
15 lines
251 B
C++
15 lines
251 B
C++
#include "myinit.h"
|
|
#include "Point.hpp"
|
|
|
|
Point::Point(unsigned long x, unsigned long y) {}
|
|
Point::~Point() {}
|
|
|
|
|
|
SV*
|
|
Point::_toPerl() {
|
|
AV* av = newAV();
|
|
av_fill(av, 1);
|
|
av_store_point_xy(av, x, y);
|
|
return (SV*)newRV_noinc((SV*)av);
|
|
}
|