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