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

SupportMaterial.xsp « xsp « xs - github.com/supermerill/SuperSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b6925261d7a60790d190494e11bb9f16cc848d87 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
%module{Slic3r::XS};

%{
#include <xsinit.h>
#include "libslic3r/SupportMaterial.hpp"
%}

%name{Slic3r::Print::SupportMaterial2} class PrintSupportMaterial {
    %name{_new} PrintSupportMaterial(
		PrintConfig 		*print_config,
		PrintObjectConfig	*object_config,
		Flow 			 	*flow,
		Flow 			 	*first_layer_flow,
		Flow 			 	*interface_flow,
		bool 			 	 soluble_interface);
    ~PrintSupportMaterial();

    void generate(PrintObject *object)
        %code{% THIS->generate(*object); %};
};

%package{Slic3r::Print::SupportMaterial};
%{

SV*
MARGIN()
    PROTOTYPE:
    CODE:
        RETVAL = newSVnv(SUPPORT_MATERIAL_MARGIN);
    OUTPUT: RETVAL

%}