X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FLaTeX-TikZ.git;a=blobdiff_plain;f=lib%2FLaTeX%2FTikZ%2FSet%2FOp.pm;h=c7b6b57bebe97a9b0f8f83dc8069c686269f2d5b;hp=f37fdc87e6fa860853d49fa2d3a9efebc45002fc;hb=e6c6fbca8df4f8df7bbce2eb98dd260ed51d9141;hpb=fcf49f47b7655e0bc3ed8c3da7f1004cbb70c7a5 diff --git a/lib/LaTeX/TikZ/Set/Op.pm b/lib/LaTeX/TikZ/Set/Op.pm index f37fdc8..c7b6b57 100644 --- a/lib/LaTeX/TikZ/Set/Op.pm +++ b/lib/LaTeX/TikZ/Set/Op.pm @@ -15,14 +15,46 @@ Version 0.01 our $VERSION = '0.01'; +=head1 DESCRIPTION + +Ops are the components of a path. +They can be built together to form a path. +Thus, they are all the elements against which we can call the C method. + +=cut + use Any::Moose 'Role'; +=head1 RELATIONSHIPS + +This role consumes the L role, and as such implements the L method. + +=cut + with 'LaTeX::TikZ::Set'; +=head1 METHODS + +This method is required by the interface : + +=over 4 + +=item * + +C + +=back + +=cut + requires qw( path ); +=head2 C + +=cut + sub draw { my $set = shift;