2013-07-16 21:04:14 +02:00
|
|
|
%typemap{bool}{simple};
|
2013-06-23 15:33:07 +02:00
|
|
|
%typemap{std::string};
|
2013-12-20 16:37:28 +01:00
|
|
|
%typemap{t_config_option_key};
|
2013-06-24 20:11:56 +02:00
|
|
|
%typemap{std::vector<unsigned int>*};
|
2013-09-09 23:38:49 +02:00
|
|
|
%typemap{std::vector<double>};
|
2013-09-07 14:06:09 +02:00
|
|
|
%typemap{std::vector<double>*};
|
2013-12-21 21:06:45 +01:00
|
|
|
%typemap{std::vector<std::string>};
|
2013-06-24 20:11:56 +02:00
|
|
|
%typemap{SV*};
|
|
|
|
%typemap{AV*};
|
2013-07-14 13:05:55 +02:00
|
|
|
%typemap{Point*};
|
2013-12-21 16:15:41 +01:00
|
|
|
%typemap{DynamicPrintConfig*};
|
2014-01-02 10:44:54 +01:00
|
|
|
%typemap{PrintObjectConfig*};
|
|
|
|
%typemap{PrintRegionConfig*};
|
2013-12-21 16:32:11 +01:00
|
|
|
%typemap{PrintConfig*};
|
2014-01-02 10:44:54 +01:00
|
|
|
%typemap{FullPrintConfig*};
|
2013-07-14 13:05:55 +02:00
|
|
|
%typemap{ExPolygon*};
|
2013-11-21 17:53:50 +01:00
|
|
|
%typemap{ExPolygonCollection*};
|
2013-11-21 15:12:06 +01:00
|
|
|
%typemap{Line*};
|
2013-07-15 12:14:22 +02:00
|
|
|
%typemap{Polyline*};
|
|
|
|
%typemap{Polygon*};
|
2013-07-18 19:09:07 +02:00
|
|
|
%typemap{ExtrusionEntityCollection*};
|
2013-07-15 23:56:01 +02:00
|
|
|
%typemap{ExtrusionPath*};
|
|
|
|
%typemap{ExtrusionLoop*};
|
2013-08-27 00:52:20 +02:00
|
|
|
%typemap{Points};
|
2013-07-15 23:12:13 +02:00
|
|
|
%typemap{Lines};
|
2013-07-16 20:09:53 +02:00
|
|
|
%typemap{Polygons};
|
2013-11-21 14:15:38 +01:00
|
|
|
%typemap{Polylines};
|
2013-12-20 01:36:42 +01:00
|
|
|
%typemap{PrintState};
|
2013-07-16 20:09:53 +02:00
|
|
|
%typemap{ExPolygons};
|
2013-11-23 18:29:25 +01:00
|
|
|
%typemap{Surfaces};
|
2013-09-02 20:22:20 +02:00
|
|
|
%typemap{Polygons*};
|
2013-09-09 22:27:58 +02:00
|
|
|
%typemap{TriangleMeshPtrs};
|
2013-07-15 23:12:13 +02:00
|
|
|
|
2013-07-14 13:05:55 +02:00
|
|
|
%typemap{SurfaceType}{parsed}{
|
|
|
|
%cpp_type{SurfaceType};
|
|
|
|
%precall_code{%
|
|
|
|
$CVar = (SurfaceType)SvUV($PerlVar);
|
|
|
|
%};
|
2013-07-15 12:14:22 +02:00
|
|
|
};
|
|
|
|
%typemap{ExtrusionRole}{parsed}{
|
|
|
|
%cpp_type{ExtrusionRole};
|
|
|
|
%precall_code{%
|
|
|
|
$CVar = (ExtrusionRole)SvUV($PerlVar);
|
|
|
|
%};
|
|
|
|
};
|
2013-12-20 01:36:42 +01:00
|
|
|
%typemap{PrintStep}{parsed}{
|
|
|
|
%cpp_type{PrintStep};
|
|
|
|
%precall_code{%
|
|
|
|
$CVar = (PrintStep)SvUV($PerlVar);
|
|
|
|
%};
|
|
|
|
};
|