X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=lib%2FLaTeX%2FTikZ%2FSet%2FPoint.pm;h=354d1de6bf70fcadd0b11dd5140b45dfbcaab345;hb=4f696c03a66ef6b52ee7b9b3c74a71d5abc64f7e;hp=b45adaf41411a21415fcba9a9966bb977c1b940c;hpb=c0c71aaf7da22da2c52cec635cb899a25599dad7;p=perl%2Fmodules%2FLaTeX-TikZ.git diff --git a/lib/LaTeX/TikZ/Set/Point.pm b/lib/LaTeX/TikZ/Set/Point.pm index b45adaf..354d1de 100644 --- a/lib/LaTeX/TikZ/Set/Point.pm +++ b/lib/LaTeX/TikZ/Set/Point.pm @@ -9,36 +9,62 @@ LaTeX::TikZ::Set::Point - A set object representing a point. =head1 VERSION -Version 0.01 +Version 0.03 =cut -our $VERSION = '0.01'; +our $VERSION = '0.03'; use LaTeX::TikZ::Point; use LaTeX::TikZ::Interface; use LaTeX::TikZ::Functor; -use Any::Moose; -use Any::Moose 'Util::TypeConstraints'; +use Mouse; +use Mouse::Util::TypeConstraints; -with 'LaTeX::TikZ::Set::Op'; +=head1 RELATIONSHIPS + +This class consumes the L role, and as such implements the L method. + +=cut + +with 'LaTeX::TikZ::Set::Path'; + +=head1 ATTRIBUTES + +=head2 C + +The L object representing the underlying geometrical point. + +=cut has 'point' => ( is => 'ro', isa => 'LaTeX::TikZ::Point::Autocoerce', required => 1, coerce => 1, - handles => [ qw/x y/ ], + handles => [ qw ], ); +=head2 C