X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=lib%2FLaTeX%2FTikZ%2FSet%2FLine.pm;h=0a455c9baf80e04e9c1dd7bc908647ec11509a78;hb=3661d7849ae4636b74000e33e068493d90ed8337;hp=ffe5975c89a27be0db00f3ec03860b0903fb1829;hpb=af7d6a5aef3bf5fec0c187b3a13a14adc88251fd;p=perl%2Fmodules%2FLaTeX-TikZ.git diff --git a/lib/LaTeX/TikZ/Set/Line.pm b/lib/LaTeX/TikZ/Set/Line.pm index ffe5975..0a455c9 100644 --- a/lib/LaTeX/TikZ/Set/Line.pm +++ b/lib/LaTeX/TikZ/Set/Line.pm @@ -9,20 +9,34 @@ 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; -with 'LaTeX::TikZ::Set::Op'; +=head1 RELATIONSHIPS + +This class consumes the L role, and as such implements the L method. + +=cut + +with 'LaTeX::TikZ::Set::Path'; + +=head1 ATTRIBUTES + +=head2 C + +The first endpoint of the line, as a L object. + +=cut has 'from' => ( is => 'ro', @@ -31,6 +45,12 @@ has 'from' => ( coerce => 1, ); +=head2 C + +The second endpoint of the line, also as a L object. + +=cut + has 'to' => ( is => 'ro', isa => 'LaTeX::TikZ::Set::Point', @@ -38,12 +58,30 @@ has 'to' => ( coerce => 1, ); +=head1 METHODS + +=head2 C + +=cut + sub path { my $set = shift; $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; @@ -55,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.