mirror of
https://git.mirrors.martin98.com/https://github.com/prusa3d/PrusaSlicer.git
synced 2025-05-02 16:54:58 +08:00
9 lines
119 B
Perl
9 lines
119 B
Perl
package Slic3r::Line::FacetEdge;
|
|
use Moo;
|
|
|
|
extends 'Slic3r::Line';
|
|
|
|
has 'edge_type' => (is => 'ro'); # top/bottom
|
|
|
|
1;
|