mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-06 22:47:32 -06:00
8 lines
119 B
Perl
8 lines
119 B
Perl
package Slic3r::Line::FacetEdge;
|
|
use Moo;
|
|
|
|
extends 'Slic3r::Line';
|
|
|
|
has 'edge_type' => (is => 'ro'); # top/bottom
|
|
|
|
1;
|