PrusaSlicer-NonPlainar/lib/Slic3r/Line.pm

100 lines
2.1 KiB
Perl
Raw Normal View History

2011-09-01 19:06:28 +00:00
package Slic3r::Line;
2011-10-12 14:27:40 +00:00
use strict;
use warnings;
2011-09-01 19:06:28 +00:00
use Boost::Geometry::Utils;
use Slic3r::Geometry qw(A B X Y);
2011-10-12 14:27:40 +00:00
sub new {
my $class = shift;
2011-10-12 14:27:40 +00:00
my $self;
2012-02-25 21:15:34 +00:00
$self = [ @_ ];
2011-10-12 14:27:40 +00:00
bless $self, $class;
bless $_, 'Slic3r::Point' for @$self;
2011-10-12 14:27:40 +00:00
return $self;
2011-09-01 19:06:28 +00:00
}
2011-10-12 14:27:40 +00:00
sub a { $_[0][0] }
sub b { $_[0][1] }
2011-09-05 10:21:27 +00:00
sub coordinates {
my $self = shift;
return ($self->a->coordinates, $self->b->coordinates);
}
sub boost_linestring {
my $self = shift;
return Boost::Geometry::Utils::linestring($self);
}
2011-09-01 19:06:28 +00:00
sub coincides_with {
my $self = shift;
my ($line) = @_;
return ($self->a->coincides_with($line->a) && $self->b->coincides_with($line->b))
|| ($self->a->coincides_with($line->b) && $self->b->coincides_with($line->a));
}
2011-09-02 19:10:20 +00:00
sub has_endpoint {
my $self = shift;
2011-09-05 10:21:27 +00:00
my ($point) = @_;
2011-09-02 19:10:20 +00:00
return $point->coincides_with($self->a) || $point->coincides_with($self->b);
}
sub has_segment {
my $self = shift;
my ($line) = @_;
# a segment belongs to another segment if its points belong to it
2011-10-12 14:27:40 +00:00
return Slic3r::Geometry::point_in_segment($line->[0], $self)
&& Slic3r::Geometry::point_in_segment($line->[1], $self);
}
sub parallel_to {
2011-09-01 19:06:28 +00:00
my $self = shift;
my ($line) = @_;
2011-10-12 14:27:40 +00:00
return Slic3r::Geometry::lines_parallel($self, $line);
2011-09-01 19:06:28 +00:00
}
sub length {
my $self = shift;
return Slic3r::Geometry::line_length($self);
}
sub atan {
my $self = shift;
return Slic3r::Geometry::line_atan($self);
}
sub direction {
my $self = shift;
return Slic3r::Geometry::line_direction($self);
}
sub intersection {
my $self = shift;
my ($line, $require_crossing) = @_;
return Slic3r::Geometry::line_intersection($self, $line, $require_crossing);
}
sub point_on_left {
my $self = shift;
my ($point) = @_;
return Slic3r::Geometry::point_is_on_left_of_segment($point, $self);
}
sub midpoint {
my $self = shift;
return Slic3r::Point->new(
($self->[A][X] + $self->[B][X]) / 2,
($self->[A][Y] + $self->[B][Y]) / 2,
);
}
sub reverse {
my $self = shift;
@$self = reverse @$self;
}
2011-09-01 19:06:28 +00:00
1;