Polygon.pm 378 B

1234567891011121314
  1. #/|/ Copyright (c) Prusa Research 2017 - 2022 Vojtěch Bubník @bubnikv
  2. #/|/ Copyright (c) Slic3r 2011 - 2014 Alessandro Ranellucci @alranel
  3. #/|/ Copyright (c) 2012 Mark Hindess
  4. #/|/
  5. #/|/ PrusaSlicer is released under the terms of the AGPLv3 or higher
  6. #/|/
  7. package Slic3r::Polygon;
  8. use strict;
  9. use warnings;
  10. # a polygon is a closed polyline.
  11. use parent 'Slic3r::Polyline';
  12. 1;