mirror of
https://git.mirrors.martin98.com/https://github.com/prusa3d/PrusaSlicer.git
synced 2025-07-28 16:12:01 +08:00
14 lines
327 B
Perl
14 lines
327 B
Perl
#/|/ Copyright (c) Prusa Research 2022 Vojtěch Bubník @bubnikv
|
|
#/|/ Copyright (c) Slic3r 2011 - 2014 Alessandro Ranellucci @alranel
|
|
#/|/
|
|
#/|/ PrusaSlicer is released under the terms of the AGPLv3 or higher
|
|
#/|/
|
|
package Slic3r::Line;
|
|
use strict;
|
|
use warnings;
|
|
|
|
# a line is a two-points line
|
|
use parent 'Slic3r::Polyline';
|
|
|
|
1;
|