]> git.vpit.fr Git - perl/modules/LaTeX-TikZ.git/blob - lib/LaTeX/TikZ/Point.pm
316624860c33e0ad95985437b176ccd3af609edb
[perl/modules/LaTeX-TikZ.git] / lib / LaTeX / TikZ / Point.pm
1 package LaTeX::TikZ::Point;
2
3 use strict;
4 use warnings;
5
6 =head1 NAME
7
8 LaTeX::TikZ::Point - Internal representation of what LaTeX::TikZ consider as 2D points.
9
10 =head1 VERSION
11
12 Version 0.01
13
14 =cut
15
16 our $VERSION = '0.01';
17
18 use Any::Moose;
19 use Any::Moose 'Util::TypeConstraints' => [ qw/
20  coerce
21  from
22  via
23  find_type_constraint
24  register_type_constraint
25 / ];
26
27 has 'x' => (
28  is       => 'ro',
29  isa      => 'Num',
30  required => 1,
31 );
32
33 has 'y' => (
34  is       => 'ro',
35  isa      => 'Num',
36  required => 1,
37 );
38
39 use LaTeX::TikZ::Meta::TypeConstraint::Autocoerce;
40
41 register_type_constraint(
42  LaTeX::TikZ::Meta::TypeConstraint::Autocoerce->new(
43   name   => 'LaTeX::TikZ::Point::Autocoerce',
44   parent => find_type_constraint(__PACKAGE__),
45  ),
46 );
47
48 coerce 'LaTeX::TikZ::Point::Autocoerce'
49     => from 'LaTeX::TikZ::Point'
50     => via { $_ };
51
52 coerce 'LaTeX::TikZ::Point::Autocoerce'
53     => from 'Num'
54     => via { LaTeX::TikZ::Point->new(x => $_, y => 0) };
55
56 coerce 'LaTeX::TikZ::Point::Autocoerce'
57     => from 'ArrayRef'
58     => via { LaTeX::TikZ::Point->new(x => $_->[0], y => $_->[1]) };
59
60 __PACKAGE__->meta->make_immutable;
61
62 =head1 AUTHOR
63
64 Vincent Pit, C<< <perl at profvince.com> >>, L<http://www.profvince.com>.
65
66 You can contact me by mail or on C<irc.perl.org> (vincent).
67
68 =head1 BUGS
69
70 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>.
71 I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
72
73 =head1 SUPPORT
74
75 You can find documentation for this module with the perldoc command.
76
77     perldoc LaTeX::TikZ
78
79 =head1 COPYRIGHT & LICENSE
80
81 Copyright 2010 Vincent Pit, all rights reserved.
82
83 This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
84
85 =cut
86
87 1; # End of LaTeX::TikZ::Point