X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=lib%2FLaTeX%2FTikZ%2FSet%2FPolyline.pm;h=e1172eb36b0f25590138aca3e33d04fcaf0a679f;hb=e6c6fbca8df4f8df7bbce2eb98dd260ed51d9141;hp=ef339e4d9a213e8600b721b0d8fd10075faa51e7;hpb=080eb1e263eb7c3700a9ebfd96522eaa534a0b6c;p=perl%2Fmodules%2FLaTeX-TikZ.git diff --git a/lib/LaTeX/TikZ/Set/Polyline.pm b/lib/LaTeX/TikZ/Set/Polyline.pm index ef339e4..e1172eb 100644 --- a/lib/LaTeX/TikZ/Set/Polyline.pm +++ b/lib/LaTeX/TikZ/Set/Polyline.pm @@ -5,7 +5,7 @@ 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 @@ -17,9 +17,18 @@ our $VERSION = '0.01'; use LaTeX::TikZ::Set::Point; +use LaTeX::TikZ::Interface; +use LaTeX::TikZ::Functor; + use Any::Moose; use Any::Moose 'Util::TypeConstraints'; +=head1 RELATIONSHIPS + +This class consumes the L role, and as such implements the L method. + +=cut + with 'LaTeX::TikZ::Set::Op'; subtype 'LaTeX::TikZ::Set::Polyline::Vertices' @@ -31,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', @@ -41,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; @@ -54,17 +83,28 @@ sub path { ($set->closed ? 'cycle' : ()); } -use LaTeX::TikZ::Interface polyline => sub { - shift; +LaTeX::TikZ::Interface->register( + polyline => sub { + shift; - __PACKAGE__->new(points => \@_); -}; + __PACKAGE__->new(points => \@_); + }, + closed_polyline => sub { + shift; -use LaTeX::TikZ::Interface closed_polyline => sub { - shift; + __PACKAGE__->new(points => \@_, closed => 1); + }, +); - __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__->meta->make_immutable;