]> git.vpit.fr Git - perl/modules/LaTeX-TikZ.git/blob - lib/LaTeX/TikZ/Set/Arrow.pm
Introduce LaTeX::TikZ::Set::Arrow
[perl/modules/LaTeX-TikZ.git] / lib / LaTeX / TikZ / Set / Arrow.pm
1 package LaTeX::TikZ::Set::Arrow;
2
3 use strict;
4 use warnings;
5
6 =head1 NAME
7
8 LaTeX::TikZ::Set::Arrow - A combined set object representing an arrow.
9
10 =head1 VERSION
11
12 Version 0.01
13
14 =cut
15
16 our $VERSION = '0.01';
17
18 use Carp;
19
20 use LaTeX::TikZ::Point;
21
22 use LaTeX::TikZ::Set::Line;
23
24 use Any::Moose 'Util::TypeConstraints' => [ 'find_type_constraint' ];
25
26 my $ltp_tc = find_type_constraint('LaTeX::TikZ::Point::Autocoerce');
27
28 use LaTeX::TikZ::Interface arrow => sub {
29  shift;
30
31  Carp::confess('Not enough arguments') unless @_ >= 2;
32
33  my $from = $ltp_tc->coerce(shift);
34
35  my $to;
36  if ($_[0] eq 'dir') {
37   my $dir = $ltp_tc->coerce($_[1]);
38   $to = LaTeX::TikZ::Point->new(
39    x => $from->x + $dir->x,
40    y => $from->y + $dir->y,
41   );
42  } else {
43   $to = $_[0];
44  }
45
46  LaTeX::TikZ::Set::Line->new(
47   from => $from,
48   to   => $to,
49  )->mod('->');
50 };
51
52 =head1 AUTHOR
53
54 Vincent Pit, C<< <perl at profvince.com> >>, L<http://www.profvince.com>.
55
56 You can contact me by mail or on C<irc.perl.org> (vincent).
57
58 =head1 BUGS
59
60 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>.
61 I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
62
63 =head1 SUPPORT
64
65 You can find documentation for this module with the perldoc command.
66
67     perldoc LaTeX::TikZ
68
69 =head1 COPYRIGHT & LICENSE
70
71 Copyright 2010 Vincent Pit, all rights reserved.
72
73 This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
74
75 =cut
76
77 1; # End of LaTeX::TikZ::Set::Arrow