X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FLaTeX-TikZ.git;a=blobdiff_plain;f=lib%2FLaTeX%2FTikZ%2FSet%2FPath.pm;h=7a8793d1232e9cd82167e273d2c3dbe74bd9d8de;hp=5a9e59c283432bd5b814cb52fc4b28fd15ba22a9;hb=e6c6fbca8df4f8df7bbce2eb98dd260ed51d9141;hpb=fcf49f47b7655e0bc3ed8c3da7f1004cbb70c7a5 diff --git a/lib/LaTeX/TikZ/Set/Path.pm b/lib/LaTeX/TikZ/Set/Path.pm index 5a9e59c..7a8793d 100644 --- a/lib/LaTeX/TikZ/Set/Path.pm +++ b/lib/LaTeX/TikZ/Set/Path.pm @@ -22,11 +22,25 @@ use Any::Moose; use Any::Moose 'Util::TypeConstraints' => [ qw/subtype as where find_type_constraint/ ]; +=head1 RELATIONSHIPS + +This class consumes the L and L roles, and as such implements the L and L methods. + +=cut + with qw( LaTeX::TikZ::Set::Op LaTeX::TikZ::Set::Mutable ); +=head1 ATTRIBUTES + +=head2 C + +The L objects that from the path. + +=cut + subtype 'LaTeX::TikZ::Set::Path::Elements' => as 'Object' => where { $_->does('LaTeX::TikZ::Set::Op') }; @@ -40,6 +54,12 @@ has '_ops' => ( sub ops { @{$_[0]->_ops} } +=head1 METHODS + +=head2 C + +=cut + my $ltspe_tc = find_type_constraint('LaTeX::TikZ::Set::Path::Elements'); sub add { @@ -52,6 +72,10 @@ sub add { $set; } +=head2 C + +=cut + sub path { my $set = shift;