Refactoring: moved direction-specific methods to new role class Slic3r::Fill::WithDirection

This commit is contained in:
Alessandro Ranellucci 2014-07-26 16:28:38 +02:00
parent c4d70bcb85
commit d508be5ae8
4 changed files with 20 additions and 13 deletions

View file

@ -2,6 +2,7 @@ package Slic3r::Fill::Rectilinear;
use Moo;
extends 'Slic3r::Fill::Base';
with qw(Slic3r::Fill::WithDirection);
has 'cache' => (is => 'rw', default => sub {{}});