]> git.vpit.fr Git - perl/modules/LaTeX-TikZ.git/blob - lib/LaTeX/TikZ/Set/Op.pm
Stop drawing with the newline
[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 LaTeX::TikZ::Scope;
19
20 use Any::Moose 'Role';
21
22 requires qw(
23  path
24 );
25
26 sub draw {
27  my $set = shift;
28
29  LaTeX::TikZ::Scope->new
30                    ->body([ "\\draw " . $set->path(@_) . ' ;' ]);
31 }
32
33 =head1 AUTHOR
34
35 Vincent Pit, C<< <perl at profvince.com> >>, L<http://www.profvince.com>.
36
37 You can contact me by mail or on C<irc.perl.org> (vincent).
38
39 =head1 BUGS
40
41 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>.
42 I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
43
44 =head1 SUPPORT
45
46 You can find documentation for this module with the perldoc command.
47
48     perldoc LaTeX::TikZ
49
50 =head1 COPYRIGHT & LICENSE
51
52 Copyright 2010 Vincent Pit, all rights reserved.
53
54 This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
55
56 =cut
57
58 1; # End of LaTeX::TikZ::Set::Op;