X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=lib%2FLaTeX%2FTikZ%2FSet%2FPoint.pm;h=d5761d17614c4186e66535b14c3e995af15bcdf1;hb=b8f42942311854cb0ef8a3e34c0145846639cd2e;hp=5bf292b10ca11bffccb4c1b26c90af74f803a5e2;hpb=af7d6a5aef3bf5fec0c187b3a13a14adc88251fd;p=perl%2Fmodules%2FLaTeX-TikZ.git diff --git a/lib/LaTeX/TikZ/Set/Point.pm b/lib/LaTeX/TikZ/Set/Point.pm index 5bf292b..d5761d1 100644 --- a/lib/LaTeX/TikZ/Set/Point.pm +++ b/lib/LaTeX/TikZ/Set/Point.pm @@ -9,11 +9,11 @@ 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; @@ -23,14 +23,62 @@ use LaTeX::TikZ::Functor; use Any::Moose; use Any::Moose '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