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: 633fe75836f3a906b0201a7c1913f2c0c52a5df0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef _myinit_h_
#define _myinit_h_

#include <vector>

namespace Slic3r {}
using namespace Slic3r;

#define av_store_point_xy(AV, X, Y)              \
  av_store(AV, 0, newSViv(X));                   \
  av_store(AV, 1, newSViv(Y))

#endif