X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=lib%2FLaTeX%2FTikZ%2FSet%2FPath.pm;h=d9a9799bd9efde2c2dc7d283c9dc8566b2ed92f9;hb=d9b3236d7adf9b87cebe8f956539469d42b9aef9;hp=5a9e59c283432bd5b814cb52fc4b28fd15ba22a9;hpb=af7d6a5aef3bf5fec0c187b3a13a14adc88251fd;p=perl%2Fmodules%2FLaTeX-TikZ.git diff --git a/lib/LaTeX/TikZ/Set/Path.pm b/lib/LaTeX/TikZ/Set/Path.pm index 5a9e59c..d9a9799 100644 --- a/lib/LaTeX/TikZ/Set/Path.pm +++ b/lib/LaTeX/TikZ/Set/Path.pm @@ -18,40 +18,60 @@ our $VERSION = '0.01'; use LaTeX::TikZ::Interface; use LaTeX::TikZ::Functor; +use LaTeX::TikZ::Tools; + 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 ); -subtype 'LaTeX::TikZ::Set::Path::Elements' - => as 'Object' - => where { $_->does('LaTeX::TikZ::Set::Op') }; +=head1 ATTRIBUTES + +=head2 C + +The L objects that from the path. + +=cut has '_ops' => ( is => 'ro', - isa => 'Maybe[ArrayRef[LaTeX::TikZ::Set::Path::Elements]]', + isa => 'Maybe[ArrayRef[LaTeX::TikZ::Set::Op]]', init_arg => 'ops', default => sub { [ ] }, ); sub ops { @{$_[0]->_ops} } -my $ltspe_tc = find_type_constraint('LaTeX::TikZ::Set::Path::Elements'); +=head1 METHODS + +=head2 C + +=cut + +my $ltso_tc = LaTeX::TikZ::Tools::type_constraint('LaTeX::TikZ::Set::Op'); sub add { my $set = shift; - $ltspe_tc->assert_valid($_) for @_; + $ltso_tc->assert_valid($_) for @_; push @{$set->_ops}, @_; $set; } +=head2 C + +=cut + sub path { my $set = shift; @@ -75,6 +95,10 @@ LaTeX::TikZ::Functor->default_rule( __PACKAGE__->meta->make_immutable; +=head1 SEE ALSO + +L, L, L. + =head1 AUTHOR Vincent Pit, C<< >>, L.