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

myinit.h « src « xs - github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4f534519cc887175f67a6c69d96c2af917cdb83c (plain)
1
2
3
4
5
6
7
8
9
10
#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