Implement ExPolygon::XS->clone()

This commit is contained in:
Alessandro Ranellucci 2013-07-07 15:06:01 +02:00
parent 8d49c4063b
commit 9dc1a3c69d
2 changed files with 7 additions and 1 deletions

View file

@ -15,4 +15,6 @@ package Slic3r::ExPolygon::XS;
use overload
'@{}' => sub { $_[0]->arrayref };
sub clone { (ref $_[0])->_clone($_[0]) }
1;