X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=lib%2FLaTeX%2FTikZ%2FSet%2FLine.pm;h=0a455c9baf80e04e9c1dd7bc908647ec11509a78;hb=3661d7849ae4636b74000e33e068493d90ed8337;hp=b34c730168259452f213ec1f3926069e98571b70;hpb=0f9d7c1a2d11bc7001fe450cb2086e67c13a39e9;p=perl%2Fmodules%2FLaTeX-TikZ.git diff --git a/lib/LaTeX/TikZ/Set/Line.pm b/lib/LaTeX/TikZ/Set/Line.pm index b34c730..0a455c9 100644 --- a/lib/LaTeX/TikZ/Set/Line.pm +++ b/lib/LaTeX/TikZ/Set/Line.pm @@ -9,26 +9,26 @@ 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; use LaTeX::TikZ::Interface; use LaTeX::TikZ::Functor; -use Any::Moose; +use Mouse; =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,7 +93,7 @@ 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) } ); @@ -89,7 +101,7 @@ __PACKAGE__->meta->make_immutable; =head1 SEE ALSO -L, L. +L, L. =head1 AUTHOR