X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FLaTeX-TikZ.git;a=blobdiff_plain;f=lib%2FLaTeX%2FTikZ%2FSet%2FPolyline.pm;h=e8e0ee0fe96e97c688e77a7d734c3305642583cf;hp=705cac313083fdb4e13a9a86fb2e4a7230910204;hb=7f9973057cc57660599aa4a093718cf343a48198;hpb=af7d6a5aef3bf5fec0c187b3a13a14adc88251fd diff --git a/lib/LaTeX/TikZ/Set/Polyline.pm b/lib/LaTeX/TikZ/Set/Polyline.pm index 705cac3..e8e0ee0 100644 --- a/lib/LaTeX/TikZ/Set/Polyline.pm +++ b/lib/LaTeX/TikZ/Set/Polyline.pm @@ -5,15 +5,15 @@ 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; @@ -23,7 +23,13 @@ use LaTeX::TikZ::Functor; use Any::Moose; use Any::Moose 'Util::TypeConstraints'; -with 'LaTeX::TikZ::Set::Op'; +=head1 RELATIONSHIPS + +This class is a subclass of L, and as such inherits its C method. + +=cut + +extends 'LaTeX::TikZ::Set::Chain'; subtype 'LaTeX::TikZ::Set::Polyline::Vertices' => as 'ArrayRef[LaTeX::TikZ::Set::Point]' @@ -34,7 +40,15 @@ coerce 'LaTeX::TikZ::Set::Polyline::Vertices' => from 'ArrayRef[Any]' => via { [ map LaTeX::TikZ::Set::Point->new(point => $_), @$_ ] }; -has '_points' => ( +=head1 ATTRIBUTES + +=head2 C + +The list of L objects (or scalars that coerce into such objects) that make the successive vertices of the path. + +=cut + +has '+_kids' => ( is => 'ro', isa => 'LaTeX::TikZ::Set::Polyline::Vertices', init_arg => 'points', @@ -42,20 +56,16 @@ has '_points' => ( coerce => 1, ); -sub points { @{$_[0]->_points} } +sub points { @{$_[0]->_kids} } -has 'closed' => ( - is => 'ro', - isa => 'Bool', - default => 0, -); - -sub path { - my $set = shift; +around 'BUILDARGS' => sub { + my ($orig, $class, %args) = @_; - join ' -- ', map($_->path(@_), $set->points), - ($set->closed ? 'cycle' : ()); -} + $class->$orig( + %args, + connector => '--', + ); +}; LaTeX::TikZ::Interface->register( polyline => sub { @@ -66,22 +76,19 @@ LaTeX::TikZ::Interface->register( closed_polyline => sub { shift; - __PACKAGE__->new(points => \@_, closed => 1); - }, -); - -LaTeX::TikZ::Functor->default_rule( - (__PACKAGE__) => sub { - my ($functor, $set, @args) = @_; - $set->new( - points => [ map $_->$functor(@args), $set->points ], - closed => $set->closed, + __PACKAGE__->new( + points => \@_, + cycle => 1 ); - } + }, ); __PACKAGE__->meta->make_immutable; +=head1 SEE ALSO + +L, L. + =head1 AUTHOR Vincent Pit, C<< >>, L.