X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FLaTeX-TikZ.git;a=blobdiff_plain;f=lib%2FLaTeX%2FTikZ%2FSet%2FLine.pm;h=bf41d14ac24fcfedbb30e20560765df3897726ff;hp=238e1f7f75a73fa3ea13ad44e4e6a42ee6eff926;hb=e6c6fbca8df4f8df7bbce2eb98dd260ed51d9141;hpb=e8f0879ade07eed4f58cd52c0771f4e1ecc90b09 diff --git a/lib/LaTeX/TikZ/Set/Line.pm b/lib/LaTeX/TikZ/Set/Line.pm index 238e1f7..bf41d14 100644 --- a/lib/LaTeX/TikZ/Set/Line.pm +++ b/lib/LaTeX/TikZ/Set/Line.pm @@ -15,33 +15,75 @@ Version 0.01 our $VERSION = '0.01'; +use LaTeX::TikZ::Set::Point; + +use LaTeX::TikZ::Interface; +use LaTeX::TikZ::Functor; + use Any::Moose; +=head1 RELATIONSHIPS + +This class consumes the L role, and as such implements the L method. + +=cut + with 'LaTeX::TikZ::Set::Op'; +=head1 ATTRIBUTES + +=head2 C + +The first endpoint of the line, as a L object. + +=cut + has 'from' => ( is => 'ro', - does => 'LaTeX::TikZ::Point', + isa => 'LaTeX::TikZ::Set::Point', required => 1, + coerce => 1, ); +=head2 C + +The second endpoint of the line, also as a L object. + +=cut + has 'to' => ( is => 'ro', - does => 'LaTeX::TikZ::Point', + isa => 'LaTeX::TikZ::Set::Point', required => 1, + coerce => 1, ); +=head1 METHODS + +=head2 C + +=cut + sub path { my $set = shift; $set->from->path(@_) . ' -- ' . $set->to->path(@_); } -use LaTeX::TikZ::API line => sub { - shift; +LaTeX::TikZ::Interface->register( + line => sub { + shift; - __PACKAGE__->new(from => $_[0], to => $_[1]); -}; + __PACKAGE__->new(from => $_[0], to => $_[1]); + }, +); + +LaTeX::TikZ::Functor->default_rule( + (__PACKAGE__) => sub { + my ($functor, $set, @args) = @_; + $set->new(map { $_ => $set->$_->$functor(@args) } qw/from to/) + } +); __PACKAGE__->meta->make_immutable;