X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=lib%2FLaTeX%2FTikZ%2FSet%2FPoint.pm;h=862ce891e054abca3753c3b0434f1858ed5fa107;hb=3661d7849ae4636b74000e33e068493d90ed8337;hp=409db5f359db6e51fa6686f5a01b21ba8f65f06d;hpb=080eb1e263eb7c3700a9ebfd96522eaa534a0b6c;p=perl%2Fmodules%2FLaTeX-TikZ.git diff --git a/lib/LaTeX/TikZ/Set/Point.pm b/lib/LaTeX/TikZ/Set/Point.pm index 409db5f..862ce89 100644 --- a/lib/LaTeX/TikZ/Set/Point.pm +++ b/lib/LaTeX/TikZ/Set/Point.pm @@ -9,24 +9,76 @@ LaTeX::TikZ::Set::Point - A set object representing a point. =head1 VERSION -Version 0.01 +Version 0.02 =cut -our $VERSION = '0.01'; +our $VERSION = '0.02'; use LaTeX::TikZ::Point; -use Any::Moose; -use Any::Moose 'Util::TypeConstraints'; +use LaTeX::TikZ::Interface; +use LaTeX::TikZ::Functor; -with 'LaTeX::TikZ::Set::Op'; +use Mouse; +use Mouse::Util::TypeConstraints; + +=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 ], +); + +=head2 C