X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=lib%2FLaTeX%2FTikZ%2FSet%2FPath.pm;h=11ea1064e11b2b118c8a4f0caf989fc1db7a03b9;hb=92147217516a40b35ca00c8e08939e8aa5478426;hp=b8d976827d04bd3431c7df07fed8d01c6295d2da;hpb=263a93f34deb0f2e87e89d6186361c7232b61c04;p=perl%2Fmodules%2FLaTeX-TikZ.git diff --git a/lib/LaTeX/TikZ/Set/Path.pm b/lib/LaTeX/TikZ/Set/Path.pm index b8d9768..11ea106 100644 --- a/lib/LaTeX/TikZ/Set/Path.pm +++ b/lib/LaTeX/TikZ/Set/Path.pm @@ -15,6 +15,8 @@ Version 0.01 our $VERSION = '0.01'; +use LaTeX::TikZ::Functor; + use Any::Moose; use Any::Moose 'Util::TypeConstraints' => [ qw/subtype as where find_type_constraint/ ]; @@ -42,9 +44,9 @@ my $ltspe_tc = find_type_constraint('LaTeX::TikZ::Set::Path::Elements'); sub add { my $set = shift; - $ltspe_tc->check($_) for @_; + $ltspe_tc->assert_valid($_) for @_; - push @{$_[0]->_ops}, @_; + push @{$set->_ops}, @_; $set; } @@ -55,12 +57,19 @@ sub path { join ' ', map $_->path(@_), $set->ops; } -use LaTeX::TikZ::API path => sub { +use LaTeX::TikZ::Interface path => sub { shift; __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 AUTHOR