X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=lib%2FLaTeX%2FTikZ%2FPoint.pm;h=2e20fd725c00e30d493b27067ff8fa3959ae4a08;hb=0f9d7c1a2d11bc7001fe450cb2086e67c13a39e9;hp=316624860c33e0ad95985437b176ccd3af609edb;hpb=19660696c832bcff26c87d371cccc4ffe118c782;p=perl%2Fmodules%2FLaTeX-TikZ.git diff --git a/lib/LaTeX/TikZ/Point.pm b/lib/LaTeX/TikZ/Point.pm index 3166248..2e20fd7 100644 --- a/lib/LaTeX/TikZ/Point.pm +++ b/lib/LaTeX/TikZ/Point.pm @@ -24,12 +24,26 @@ use Any::Moose 'Util::TypeConstraints' => [ qw/ register_type_constraint / ]; +=head1 ATTRIBUTES + +=head2 C + +The abscissa of the point. + +=cut + has 'x' => ( is => 'ro', isa => 'Num', required => 1, ); +=head2 C + +The ordinate of the point. + +=cut + has 'y' => ( is => 'ro', isa => 'Num', @@ -59,6 +73,10 @@ coerce 'LaTeX::TikZ::Point::Autocoerce' __PACKAGE__->meta->make_immutable; +=head1 SEE ALSO + +L. + =head1 AUTHOR Vincent Pit, C<< >>, L.