X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=lib%2FLaTeX%2FTikZ%2FSet%2FPolyline.pm;h=987c321d380f3cb7efce1437b8d68f29a09cc2ef;hb=6832c809e7591e1c3e2809654f814c298d28d2ef;hp=76656afc88c4c89ac4e0234f458b63b49f2f86b6;hpb=92147217516a40b35ca00c8e08939e8aa5478426;p=perl%2Fmodules%2FLaTeX-TikZ.git diff --git a/lib/LaTeX/TikZ/Set/Polyline.pm b/lib/LaTeX/TikZ/Set/Polyline.pm index 76656af..987c321 100644 --- a/lib/LaTeX/TikZ/Set/Polyline.pm +++ b/lib/LaTeX/TikZ/Set/Polyline.pm @@ -5,24 +5,31 @@ use warnings; =head1 NAME -LaTeX::TikZ::Set::Polyline - A set object representing a line. +LaTeX::TikZ::Set::Polyline - A set object representing a possibly closed path composed of contiguous lines. =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 Any::Moose 'Util::TypeConstraints'; -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'; subtype 'LaTeX::TikZ::Set::Polyline::Vertices' => as 'ArrayRef[LaTeX::TikZ::Set::Point]' @@ -33,6 +40,14 @@ coerce 'LaTeX::TikZ::Set::Polyline::Vertices' => from 'ArrayRef[Any]' => via { [ map LaTeX::TikZ::Set::Point->new(point => $_), @$_ ] }; +=head1 ATTRIBUTES + +=head2 C + +The list of the successive vertices of the path. + +=cut + has '_points' => ( is => 'ro', isa => 'LaTeX::TikZ::Set::Polyline::Vertices', @@ -43,12 +58,24 @@ has '_points' => ( sub points { @{$_[0]->_points} } +=head2 C + +A boolean that indicates whether the path is closed or not. + +=cut + has 'closed' => ( is => 'ro', isa => 'Bool', default => 0, ); +=head1 METHODS + +=head2 C + +=cut + sub path { my $set = shift; @@ -56,17 +83,44 @@ sub path { ($set->closed ? 'cycle' : ()); } -use LaTeX::TikZ::Interface polyline => sub { - shift; +=head2 C - __PACKAGE__->new(points => \@_); -}; +=cut -use LaTeX::TikZ::Interface closed_polyline => sub { - shift; +sub begin { + my $set = shift; + + my @points = $set->points; + return undef unless @points; + + $points[0]->begin; +} + +=head2 C + +=cut + +sub end { + my $set = shift; - __PACKAGE__->new(points => \@_, closed => 1); -}; + my @points = $set->points; + return undef unless @points; + + $points[-1]->end; +} + +LaTeX::TikZ::Interface->register( + polyline => sub { + shift; + + __PACKAGE__->new(points => \@_); + }, + closed_polyline => sub { + shift; + + __PACKAGE__->new(points => \@_, closed => 1); + }, +); LaTeX::TikZ::Functor->default_rule( (__PACKAGE__) => sub { @@ -80,6 +134,10 @@ LaTeX::TikZ::Functor->default_rule( __PACKAGE__->meta->make_immutable; +=head1 SEE ALSO + +L, L. + =head1 AUTHOR Vincent Pit, C<< >>, L.