]> git.vpit.fr Git - perl/modules/LaTeX-TikZ.git/blob - lib/LaTeX/TikZ/Set/Point.pm
Allow a bare Tikz->point for 0
[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 LaTeX::TikZ::Point;
19
20 use Any::Moose;
21 use Any::Moose 'Util::TypeConstraints';
22
23 with 'LaTeX::TikZ::Set::Op';
24
25 has 'point' => (
26  is       => 'ro',
27  isa      => 'LaTeX::TikZ::Point::Autocoerce',
28  required => 1,
29  coerce   => 1,
30 );
31
32 coerce 'LaTeX::TikZ::Set::Point'
33     => from 'Any'
34     => via { __PACKAGE__->new(point => $_) };
35
36 coerce 'LaTeX::TikZ::Point::Autocoerce'
37     => from 'LaTeX::TikZ::Set::Point'
38     => via { $_->point };
39
40 sub path {
41  my ($set, $tikz) = @_;
42
43  my $p = $set->point;
44
45  '(' . $tikz->len($p->x) . ',' . $tikz->len($p->y) . ')';
46 }
47
48 use LaTeX::TikZ::Interface point => sub {
49  shift;
50
51  my $point = @_ == 0 ? 0
52                      : @_ == 1 ? $_[0]
53                                : \@_;
54  __PACKAGE__->new(point => $point);
55 };
56
57 __PACKAGE__->meta->make_immutable;
58
59 =head1 AUTHOR
60
61 Vincent Pit, C<< <perl at profvince.com> >>, L<http://www.profvince.com>.
62
63 You can contact me by mail or on C<irc.perl.org> (vincent).
64
65 =head1 BUGS
66
67 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>.
68 I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
69
70 =head1 SUPPORT
71
72 You can find documentation for this module with the perldoc command.
73
74     perldoc LaTeX::TikZ
75
76 =head1 COPYRIGHT & LICENSE
77
78 Copyright 2010 Vincent Pit, all rights reserved.
79
80 This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
81
82 =cut
83
84 1; # End of LaTeX::TikZ::Set::Point