X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=lib%2FLaTeX%2FTikZ%2FSet%2FLine.pm;h=fab6da44d39f7ca5cdc421c1751c23fe30684cf7;hb=4f696c03a66ef6b52ee7b9b3c74a71d5abc64f7e;hp=3ee969493a0f764a292c4cdca1ea424dd3c219f0;hpb=65b895926935d98e3bd34b82a6e8b4e4e6b2f09c;p=perl%2Fmodules%2FLaTeX-TikZ.git diff --git a/lib/LaTeX/TikZ/Set/Line.pm b/lib/LaTeX/TikZ/Set/Line.pm index 3ee9694..fab6da4 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.02 +Version 0.03 =cut -our $VERSION = '0.02'; +our $VERSION = '0.03'; 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; @@ -89,7 +101,7 @@ __PACKAGE__->meta->make_immutable; =head1 SEE ALSO -L, L. +L, L. =head1 AUTHOR @@ -110,7 +122,7 @@ You can find documentation for this module with the perldoc command. =head1 COPYRIGHT & LICENSE -Copyright 2010 Vincent Pit, all rights reserved. +Copyright 2010,2011,2012,2013,2014,2015 Vincent Pit, all rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.