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

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

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

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

%}