X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=lib%2FLaTeX%2FTikZ%2FSet%2FPath.pm;h=5a9e59c283432bd5b814cb52fc4b28fd15ba22a9;hb=af7d6a5aef3bf5fec0c187b3a13a14adc88251fd;hp=18b9020d120da1ef7b26eedcb3379d8e5eb94632;hpb=5adf00c880491bac3bd793a07431cf161c03643f;p=perl%2Fmodules%2FLaTeX-TikZ.git diff --git a/lib/LaTeX/TikZ/Set/Path.pm b/lib/LaTeX/TikZ/Set/Path.pm index 18b9020..5a9e59c 100644 --- a/lib/LaTeX/TikZ/Set/Path.pm +++ b/lib/LaTeX/TikZ/Set/Path.pm @@ -15,6 +15,9 @@ Version 0.01 our $VERSION = '0.01'; +use LaTeX::TikZ::Interface; +use LaTeX::TikZ::Functor; + use Any::Moose; use Any::Moose 'Util::TypeConstraints' => [ qw/subtype as where find_type_constraint/ ]; @@ -55,11 +58,20 @@ sub path { join ' ', map $_->path(@_), $set->ops; } -use LaTeX::TikZ::Interface 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;