X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=lib%2FLaTeX%2FTikZ%2FSet%2FPath.pm;h=86dfe446cf4a7504cc8357006b0d0a8c1d2e7afd;hb=0f9d7c1a2d11bc7001fe450cb2086e67c13a39e9;hp=319298b3bd518dd87a2a213dff4910b3247f499c;hpb=e8f0879ade07eed4f58cd52c0771f4e1ecc90b09;p=perl%2Fmodules%2FLaTeX-TikZ.git diff --git a/lib/LaTeX/TikZ/Set/Path.pm b/lib/LaTeX/TikZ/Set/Path.pm index 319298b..86dfe44 100644 --- a/lib/LaTeX/TikZ/Set/Path.pm +++ b/lib/LaTeX/TikZ/Set/Path.pm @@ -15,50 +15,94 @@ Version 0.01 our $VERSION = '0.01'; -use LaTeX::TikZ::Tools; +use LaTeX::TikZ::Interface; +use LaTeX::TikZ::Functor; 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') }; + has '_ops' => ( is => 'ro', - isa => 'Maybe[ArrayRef[LaTeX::TikZ::Set::Op]]', + isa => 'Maybe[ArrayRef[LaTeX::TikZ::Set::Path::Elements]]', init_arg => 'ops', default => sub { [ ] }, ); sub ops { @{$_[0]->_ops} } -my $ltso_tc = LaTeX::TikZ::Tools::type_constraint('LaTeX::TikZ::Set::Op'); +=head1 METHODS + +=head2 C + +=cut + +my $ltspe_tc = find_type_constraint('LaTeX::TikZ::Set::Path::Elements'); sub add { my $set = shift; - $ltso_tc->check($_) for @_; + $ltspe_tc->assert_valid($_) for @_; - push @{$_[0]->_ops}, @_; + push @{$set->_ops}, @_; $set; } +=head2 C + +=cut + sub path { my $set = shift; join ' ', map $_->path(@_), $set->ops; } -use LaTeX::TikZ::API path => sub { - shift; +LaTeX::TikZ::Interface->register( + path => sub { + shift; - __PACKAGE__->new(ops => \@_); -}; + __PACKAGE__->new(ops => \@_); + }, +); + +LaTeX::TikZ::Functor->default_rule( + (__PACKAGE__) => sub { + my ($functor, $set, @args) = @_; + $set->new(ops => [ map $_->$functor(@args), $set->ops ]) + } +); __PACKAGE__->meta->make_immutable; +=head1 SEE ALSO + +L, L, L. + =head1 AUTHOR Vincent Pit, C<< >>, L.