]> git.vpit.fr Git - perl/modules/LaTeX-TikZ.git/blob - lib/LaTeX/TikZ/Set/Line.pm
Introduce LaTeX::TikZ::Functor
[perl/modules/LaTeX-TikZ.git] / lib / LaTeX / TikZ / Set / Line.pm
1 package LaTeX::TikZ::Set::Line;
2
3 use strict;
4 use warnings;
5
6 =head1 NAME
7
8 LaTeX::TikZ::Set::Line - A set object representing a line.
9
10 =head1 VERSION
11
12 Version 0.01
13
14 =cut
15
16 our $VERSION = '0.01';
17
18 use LaTeX::TikZ::Set::Point;
19
20 use LaTeX::TikZ::Functor;
21
22 use Any::Moose;
23
24 with 'LaTeX::TikZ::Set::Op';
25
26 has 'from' => (
27  is       => 'ro',
28  isa      => 'LaTeX::TikZ::Set::Point',
29  required => 1,
30  coerce   => 1,
31 );
32
33 has 'to' => (
34  is       => 'ro',
35  isa      => 'LaTeX::TikZ::Set::Point',
36  required => 1,
37  coerce   => 1,
38 );
39
40 sub path {
41  my $set = shift;
42
43  $set->from->path(@_) . ' -- ' . $set->to->path(@_);
44 }
45
46 use LaTeX::TikZ::Interface line => sub {
47  shift;
48
49  __PACKAGE__->new(from => $_[0], to => $_[1]);
50 };
51
52 LaTeX::TikZ::Functor->default_rule(
53  (__PACKAGE__) => sub {
54   my ($functor, $set, @args) = @_;
55   $set->new(map { $_ => $set->$_->$functor(@args) } qw/from to/)
56  }
57 );
58
59 __PACKAGE__->meta->make_immutable;
60
61 =head1 AUTHOR
62
63 Vincent Pit, C<< <perl at profvince.com> >>, L<http://www.profvince.com>.
64
65 You can contact me by mail or on C<irc.perl.org> (vincent).
66
67 =head1 BUGS
68
69 Please report any bugs or feature requests to C<bug-latex-tikz at rt.cpan.org>, or through the web interface at L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=LaTeX-TikZ>.
70 I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
71
72 =head1 SUPPORT
73
74 You can find documentation for this module with the perldoc command.
75
76     perldoc LaTeX::TikZ
77
78 =head1 COPYRIGHT & LICENSE
79
80 Copyright 2010 Vincent Pit, all rights reserved.
81
82 This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
83
84 =cut
85
86 1; # End of LaTeX::TikZ::Set::Line