2013-06-23 17:07:12 +02:00
|
|
|
#ifndef _myinit_h_
|
|
|
|
|
#define _myinit_h_
|
|
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
|
|
2013-07-07 22:36:14 +02:00
|
|
|
namespace Slic3r {}
|
|
|
|
|
using namespace Slic3r;
|
|
|
|
|
|
2013-07-06 15:26:32 +02:00
|
|
|
#define av_store_point_xy(AV, X, Y) \
|
|
|
|
|
av_store(AV, 0, newSViv(X)); \
|
|
|
|
|
av_store(AV, 1, newSViv(Y))
|
2013-06-23 18:18:38 +02:00
|
|
|
|
2013-06-23 17:07:12 +02:00
|
|
|
#endif
|