Files
OrcaSlicer-bambulab/xs/src/myinit.h
Alessandro Ranellucci c50ecfb7f8 New Slic3r::Point::XS class
2013-07-06 15:26:32 +02:00

11 lines
198 B
C++

#ifndef _myinit_h_
#define _myinit_h_
#include <vector>
#define av_store_point_xy(AV, X, Y) \
av_store(AV, 0, newSViv(X)); \
av_store(AV, 1, newSViv(Y))
#endif