]> git.vpit.fr Git - perl/modules/LaTeX-TikZ.git/blob - lib/LaTeX/TikZ/Set/Point.pm
Initial commit
[perl/modules/LaTeX-TikZ.git] / lib / LaTeX / TikZ / Set / Point.pm
1 package LaTeX::TikZ::Set::Point;
2
3 use strict;
4 use warnings;
5
6 =head1 NAME
7
8 LaTeX::TikZ::Set::Point - A set object representing a point.
9
10 =head1 VERSION
11
12 Version 0.01
13
14 =cut
15
16 our $VERSION = '0.01';
17
18 use Any::Moose;
19
20 with 'LaTeX::TikZ::Set::Op';
21
22 has 'point' => (
23  is       => 'ro',
24  does     => 'LaTeX::TikZ::Point',
25  required => 1,
26 );
27
28 sub path {
29  my ($set, $tikz) = @_;
30
31  my $p = $set->point;
32
33  '(' . $tikz->len($p->Re) . ',' . $tikz->len($p->Im) . ')';
34 }
35
36 use LaTeX::TikZ::API point => sub {
37  shift;
38
39  __PACKAGE__->new(point => $_[0]);
40 };
41
42 __PACKAGE__->meta->make_immutable;
43
44 =head1 AUTHOR
45
46 Vincent Pit, C<< <perl at profvince.com> >>, L<http://www.profvince.com>.
47
48 You can contact me by mail or on C<irc.perl.org> (vincent).
49
50 =head1 BUGS
51
52 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>.
53 I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
54
55 =head1 SUPPORT
56
57 You can find documentation for this module with the perldoc command.
58
59     perldoc LaTeX::TikZ
60
61 =head1 COPYRIGHT & LICENSE
62
63 Copyright 2010 Vincent Pit, all rights reserved.
64
65 This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
66
67 =cut
68
69 1; # End of LaTeX::TikZ::Set::Point