mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-05-31 09:02:53 +00:00
Refactored Line objects to arrayrefs
This commit is contained in:
@@ -3,6 +3,7 @@ use Moo;
|
||||
|
||||
extends 'Slic3r::Line';
|
||||
|
||||
has 'edge_type' => (is => 'ro'); # top/bottom
|
||||
use Slic3r::Line::FacetEdge::Bottom;
|
||||
use Slic3r::Line::FacetEdge::Top;
|
||||
|
||||
1;
|
||||
|
||||
6
lib/Slic3r/Line/FacetEdge/Bottom.pm
Normal file
6
lib/Slic3r/Line/FacetEdge/Bottom.pm
Normal file
@@ -0,0 +1,6 @@
|
||||
package Slic3r::Line::FacetEdge::Bottom;
|
||||
use Moo;
|
||||
|
||||
extends 'Slic3r::Line::FacetEdge';
|
||||
|
||||
1;
|
||||
6
lib/Slic3r/Line/FacetEdge/Top.pm
Normal file
6
lib/Slic3r/Line/FacetEdge/Top.pm
Normal file
@@ -0,0 +1,6 @@
|
||||
package Slic3r::Line::FacetEdge::Top;
|
||||
use Moo;
|
||||
|
||||
extends 'Slic3r::Line::FacetEdge';
|
||||
|
||||
1;
|
||||
Reference in New Issue
Block a user