mirror of
https://git.mirrors.martin98.com/https://github.com/prusa3d/PrusaSlicer.git
synced 2025-06-21 20:21:10 +08:00
9 lines
114 B
Perl
9 lines
114 B
Perl
package Slic3r::Line;
|
|
use strict;
|
|
use warnings;
|
|
|
|
# a line is a two-points line
|
|
use parent 'Slic3r::Polyline';
|
|
|
|
1;
|