1 package LaTeX::TikZ::Set::Op;
8 LaTeX::TikZ::Set::Op - A role for set objects that can be part of a path.
16 our $VERSION = '0.02';
20 Ops are the components of a path.
21 They can be built together to form a path.
22 Thus, they are all the elements against which we can call the C<path> method.
26 use Any::Moose 'Role';
30 This role consumes the L<LaTeX::TikZ::Set> role, and as such implements the L</draw> method.
34 with 'LaTeX::TikZ::Set';
38 This method is required by the interface :
46 Returns the TikZ code that builds a path out of the current set object as a string formatted by the L<LaTeX::TikZ::Formatter> object C<$formatter>.
63 [ "\\draw " . $set->path(@_) . ' ;' ];
68 L<LaTeX::TikZ>, L<LaTeX::TikZ::Set>.
72 Vincent Pit, C<< <perl at profvince.com> >>, L<http://www.profvince.com>.
74 You can contact me by mail or on C<irc.perl.org> (vincent).
78 Please report any bugs or feature requests to C<bug-latex-tikz at rt.cpan.org>, or through the web interface at L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=LaTeX-TikZ>.
79 I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
83 You can find documentation for this module with the perldoc command.
87 =head1 COPYRIGHT & LICENSE
89 Copyright 2010 Vincent Pit, all rights reserved.
91 This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
95 1; # End of LaTeX::TikZ::Set::Op;