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: a0301f248452ae8a94ec51ca1ebd7f70676b471a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
%module{Slic3r::XS};

#include <myinit.h>
#include "libslic3r/SupportMaterial.hpp"

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

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

%}