]> git.vpit.fr Git - perl/modules/LaTeX-TikZ.git/blob - lib/LaTeX/TikZ/Set/Op.pm
Initial commit
[perl/modules/LaTeX-TikZ.git] / lib / LaTeX / TikZ / Set / Op.pm
1 package LaTeX::TikZ::Set::Op;
2
3 use strict;
4 use warnings;
5
6 =head1 NAME
7
8 LaTeX::TikZ::Set::Op - A role for set objects that can be part of a path.
9
10 =head1 VERSION
11
12 Version 0.01
13
14 =cut
15
16 our $VERSION = '0.01';
17
18 use Any::Moose 'Role';
19
20 requires qw(
21  path
22 );
23
24 sub draw {
25  my $set = shift;
26
27  "\\draw " . $set->path(@_) . " ;\n";
28 }
29
30 =head1 AUTHOR
31
32 Vincent Pit, C<< <perl at profvince.com> >>, L<http://www.profvince.com>.
33
34 You can contact me by mail or on C<irc.perl.org> (vincent).
35
36 =head1 BUGS
37
38 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>.
39 I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
40
41 =head1 SUPPORT
42
43 You can find documentation for this module with the perldoc command.
44
45     perldoc LaTeX::TikZ
46
47 =head1 COPYRIGHT & LICENSE
48
49 Copyright 2010 Vincent Pit, all rights reserved.
50
51 This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
52
53 =cut
54
55 1; # End of LaTeX::TikZ::Set::Op;