1 package LaTeX::TikZ::Point;
8 LaTeX::TikZ::Point - Internal representation of what LaTeX::TikZ consider as 2D points.
16 our $VERSION = '0.01';
19 use Any::Moose 'Util::TypeConstraints' => [ qw/
24 register_type_constraint
31 The abscissa of the point.
43 The ordinate of the point.
53 use LaTeX::TikZ::Meta::TypeConstraint::Autocoerce;
55 register_type_constraint(
56 LaTeX::TikZ::Meta::TypeConstraint::Autocoerce->new(
57 name => 'LaTeX::TikZ::Point::Autocoerce',
58 parent => find_type_constraint(__PACKAGE__),
62 coerce 'LaTeX::TikZ::Point::Autocoerce'
63 => from 'LaTeX::TikZ::Point'
66 coerce 'LaTeX::TikZ::Point::Autocoerce'
68 => via { LaTeX::TikZ::Point->new(x => $_, y => 0) };
70 coerce 'LaTeX::TikZ::Point::Autocoerce'
72 => via { LaTeX::TikZ::Point->new(x => $_->[0], y => $_->[1]) };
74 __PACKAGE__->meta->make_immutable;
82 Vincent Pit, C<< <perl at profvince.com> >>, L<http://www.profvince.com>.
84 You can contact me by mail or on C<irc.perl.org> (vincent).
88 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>.
89 I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
93 You can find documentation for this module with the perldoc command.
97 =head1 COPYRIGHT & LICENSE
99 Copyright 2010 Vincent Pit, all rights reserved.
101 This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
105 1; # End of LaTeX::TikZ::Point