X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=lib%2FLaTeX%2FTikZ%2FSet%2FLine.pm;h=faa4ccb22f018411b8febb610874b0761e9b2327;hb=6832c809e7591e1c3e2809654f814c298d28d2ef;hp=bf41d14ac24fcfedbb30e20560765df3897726ff;hpb=e6c6fbca8df4f8df7bbce2eb98dd260ed51d9141;p=perl%2Fmodules%2FLaTeX-TikZ.git diff --git a/lib/LaTeX/TikZ/Set/Line.pm b/lib/LaTeX/TikZ/Set/Line.pm index bf41d14..faa4ccb 100644 --- a/lib/LaTeX/TikZ/Set/Line.pm +++ b/lib/LaTeX/TikZ/Set/Line.pm @@ -9,11 +9,11 @@ LaTeX::TikZ::Set::Line - A set object representing a line. =head1 VERSION -Version 0.01 +Version 0.02 =cut -our $VERSION = '0.01'; +our $VERSION = '0.02'; use LaTeX::TikZ::Set::Point; @@ -24,11 +24,11 @@ use Any::Moose; =head1 RELATIONSHIPS -This class consumes the L role, and as such implements the L method. +This class consumes the L role, and as such implements the L method. =cut -with 'LaTeX::TikZ::Set::Op'; +with 'LaTeX::TikZ::Set::Path'; =head1 ATTRIBUTES @@ -70,6 +70,18 @@ sub path { $set->from->path(@_) . ' -- ' . $set->to->path(@_); } +=head2 C + +=cut + +sub begin { $_[0]->from->begin } + +=head2 C + +=cut + +sub end { $_[0]->to->end } + LaTeX::TikZ::Interface->register( line => sub { shift; @@ -81,12 +93,16 @@ LaTeX::TikZ::Interface->register( LaTeX::TikZ::Functor->default_rule( (__PACKAGE__) => sub { my ($functor, $set, @args) = @_; - $set->new(map { $_ => $set->$_->$functor(@args) } qw/from to/) + $set->new(map { $_ => $set->$_->$functor(@args) } qw) } ); __PACKAGE__->meta->make_immutable; +=head1 SEE ALSO + +L, L. + =head1 AUTHOR Vincent Pit, C<< >>, L.