X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=lib%2FLaTeX%2FTikZ%2FSet%2FPath.pm;h=081f35bce312e2ffe30e353d737ef3954e76d56e;hb=6832c809e7591e1c3e2809654f814c298d28d2ef;hp=0b695c62c622cb27e30eeae6539716adb842ef2b;hpb=6ad93fc8c0660b952c41f0d435683ecb5fe9102a;p=perl%2Fmodules%2FLaTeX-TikZ.git diff --git a/lib/LaTeX/TikZ/Set/Path.pm b/lib/LaTeX/TikZ/Set/Path.pm index 0b695c6..081f35b 100644 --- a/lib/LaTeX/TikZ/Set/Path.pm +++ b/lib/LaTeX/TikZ/Set/Path.pm @@ -5,63 +5,79 @@ use warnings; =head1 NAME -LaTeX::TikZ::Set::Path - A set object representing a path. +LaTeX::TikZ::Set::Path - A role for set objects that can be part of a path. =head1 VERSION -Version 0.01 +Version 0.02 =cut -our $VERSION = '0.01'; +our $VERSION = '0.02'; -use Any::Moose; -use Any::Moose 'Util::TypeConstraints' - => [ qw/subtype as where find_type_constraint/ ]; +=head1 DESCRIPTION -with qw( - LaTeX::TikZ::Set::Op - LaTeX::TikZ::Set::Mutable -); +Paths are all the elements against which we can call the C method. -subtype 'LaTeX::TikZ::Set::Path::Elements' - => as 'Object' - => where { $_->does('LaTeX::TikZ::Set::Op') }; +=cut -has '_ops' => ( - is => 'ro', - isa => 'Maybe[ArrayRef[LaTeX::TikZ::Set::Path::Elements]]', - init_arg => 'ops', - default => sub { [ ] }, -); +use Any::Moose 'Role'; -sub ops { @{$_[0]->_ops} } +=head1 RELATIONSHIPS -my $ltspe_tc = find_type_constraint('LaTeX::TikZ::Set::Path::Elements'); +This role consumes the L role, and as such implements the L method. -sub add { - my $set = shift; +=cut - $ltspe_tc->assert_valid($_) for @_; +with 'LaTeX::TikZ::Set'; - push @{$set->_ops}, @_; +=head1 METHODS - $set; -} +These methods are required by the interface : + +=over 4 + +=item * + +C + +Returns the TikZ code that builds a path out of the current set object as a string formatted by the L object C<$formatter>. + +=item * + +C + +Returns a L object pointing to the beginning of the path, or C if this path has no beginning. -sub path { +=item * + +C + +A L object pointing to the end of the path, or C if this path has no end. + +=back + +=cut + +requires qw< + path + begin + end +>; + +=head2 C + +=cut + +sub draw { my $set = shift; - join ' ', map $_->path(@_), $set->ops; + [ "\\draw " . $set->path(@_) . ' ;' ]; } -use LaTeX::TikZ::API path => sub { - shift; - - __PACKAGE__->new(ops => \@_); -}; +=head1 SEE ALSO -__PACKAGE__->meta->make_immutable; +L, L. =head1 AUTHOR @@ -88,4 +104,4 @@ This program is free software; you can redistribute it and/or modify it under th =cut -1; # End of LaTeX::TikZ::Set::Path +1; # End of LaTeX::TikZ::Set::Path;