]> git.vpit.fr Git - perl/modules/LaTeX-TikZ.git/blobdiff - lib/LaTeX/TikZ/Set/Polyline.pm
Reimplement LT::Set::Polyline as a child class of LT::Set::Chain
[perl/modules/LaTeX-TikZ.git] / lib / LaTeX / TikZ / Set / Polyline.pm
index ef339e4d9a213e8600b721b0d8fd10075faa51e7..e8e0ee0fe96e97c688e77a7d734c3305642583cf 100644 (file)
@@ -5,22 +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 is a subclass of L<LaTeX::TikZ::Set::Chain>, and as such inherits its C<path> method.
+
+=cut
+
+extends 'LaTeX::TikZ::Set::Chain';
 
 subtype 'LaTeX::TikZ::Set::Polyline::Vertices'
      => as 'ArrayRef[LaTeX::TikZ::Set::Point]'
@@ -31,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<points>
+
+The list of L<LaTeX::TikZ::Set::Point> 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',
@@ -39,34 +56,38 @@ has '_points' => (
  coerce   => 1,
 );
 
-sub points { @{$_[0]->_points} }
+sub points { @{$_[0]->_kids} }
 
-has 'closed' => (
- is      => 'ro',
- isa     => 'Bool',
- default => 0,
-);
+around 'BUILDARGS' => sub {
+ my ($orig, $class, %args) = @_;
 
-sub path {
- my $set = shift;
+ $class->$orig(
+  %args,
+  connector => '--',
+ );
+};
 
- join ' -- ', map($_->path(@_), $set->points),
-              ($set->closed ? 'cycle' : ());
-}
+LaTeX::TikZ::Interface->register(
+ polyline => sub {
+  shift;
 
-use LaTeX::TikZ::Interface polyline => sub {
- shift;
+  __PACKAGE__->new(points => \@_);
+ },
+ closed_polyline => sub {
+  shift;
 
- __PACKAGE__->new(points => \@_);
-};
+  __PACKAGE__->new(
+   points => \@_,
+   cycle  => 1
+  );
+ },
+);
 
-use LaTeX::TikZ::Interface closed_polyline => sub {
- shift;
+__PACKAGE__->meta->make_immutable;
 
- __PACKAGE__->new(points => \@_, closed => 1);
-};
+=head1 SEE ALSO
 
-__PACKAGE__->meta->make_immutable;
+L<LaTeX::TikZ>, L<LaTeX::TikZ::Set::Chain>.
 
 =head1 AUTHOR