Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Point.pm « Slic3r « lib - github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a9bc3ea99409e99f19eedb6b698d2c5cf6337e90 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
package Slic3r::Point;
use strict;
use warnings;

sub new {
    my $class = shift;
    my $self;
    if (@_ == 2) {
        $self = [@_];
    } elsif ((ref $_[0]) =~ 'ARRAY' || (ref $_[0]) =~ /Slic3r::Point/) {
        $self = [@{$_[0]}];
    } elsif ($_[0]->isa(__PACKAGE__)) {
        return $_[0];
    } else {
        use XXX;
        ZZZ \@_;
        die "Invalid arguments for ${class}->new";
    }
    bless $self, $class;
    return $self;
}

sub cast {
    my $class = shift;
    if (ref $_[0] eq 'Slic3r::Point') {
        return $_[0];
    } else {
        return $class->new(@_);
    }
}

sub id {
    my $self = shift;
    return join ',', @$self;
}

sub coordinates {
    my $self = shift;
    return @$self;
}

sub coincides_with {
    my $self = shift;
    my ($point) = @_;
    return Slic3r::Geometry::points_coincide($self, $point);
}

sub distance_to {
    my $self = shift;
    my ($point) = @_;
    return Slic3r::Geometry::distance_between_points($self, $point);
}

sub x { $_[0]->[0] }
sub y { $_[0]->[1] }

1;