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

XS.pm « Slic3r « lib « xs - github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1b245329a90523b524238ecf448d534d253bac6d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package Slic3r::XS;
use warnings;
use strict;

our $VERSION = '0.01';

use XSLoader;
XSLoader::load(__PACKAGE__, $VERSION);

package Slic3r::Point::XS;
use overload
    '@{}' => sub { $_[0]->_toPerl };

1;