X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=lib%2FLaTeX%2FTikZ%2FSet%2FPolyline.pm;h=987c321d380f3cb7efce1437b8d68f29a09cc2ef;hb=6832c809e7591e1c3e2809654f814c298d28d2ef;hp=4f277912a44f19da684fb1f241b6d41c2832d7e9;hpb=0f9d7c1a2d11bc7001fe450cb2086e67c13a39e9;p=perl%2Fmodules%2FLaTeX-TikZ.git diff --git a/lib/LaTeX/TikZ/Set/Polyline.pm b/lib/LaTeX/TikZ/Set/Polyline.pm index 4f27791..987c321 100644 --- a/lib/LaTeX/TikZ/Set/Polyline.pm +++ b/lib/LaTeX/TikZ/Set/Polyline.pm @@ -9,11 +9,11 @@ LaTeX::TikZ::Set::Polyline - A set object representing a possibly closed path co =head1 VERSION -Version 0.01 +Version 0.02 =cut -our $VERSION = '0.01'; +our $VERSION = '0.02'; use LaTeX::TikZ::Set::Point; @@ -25,11 +25,11 @@ use Any::Moose 'Util::TypeConstraints'; =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'; subtype 'LaTeX::TikZ::Set::Polyline::Vertices' => as 'ArrayRef[LaTeX::TikZ::Set::Point]' @@ -83,6 +83,32 @@ sub path { ($set->closed ? 'cycle' : ()); } +=head2 C + +=cut + +sub begin { + my $set = shift; + + my @points = $set->points; + return undef unless @points; + + $points[0]->begin; +} + +=head2 C + +=cut + +sub end { + my $set = shift; + + my @points = $set->points; + return undef unless @points; + + $points[-1]->end; +} + LaTeX::TikZ::Interface->register( polyline => sub { shift; @@ -110,7 +136,7 @@ __PACKAGE__->meta->make_immutable; =head1 SEE ALSO -L, L. +L, L. =head1 AUTHOR