mirror of
https://github.com/FULU-Foundation/OrcaSlicer-bambulab.git
synced 2026-07-11 08:04:25 +00:00
11 lines
198 B
C++
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
|