]> git.vpit.fr Git - perl/modules/LaTeX-TikZ.git/blob - lib/LaTeX/TikZ/Mod/Width.pm
Initial commit
[perl/modules/LaTeX-TikZ.git] / lib / LaTeX / TikZ / Mod / Width.pm
1 package LaTeX::TikZ::Mod::Width;
2
3 use strict;
4 use warnings;
5
6 =head1 NAME
7
8 LaTeX::TikZ::Mod::Width - A modifier that sets the line width.
9
10 =head1 VERSION
11
12 Version 0.01
13
14 =cut
15
16 our $VERSION = '0.01';
17
18 use LaTeX::TikZ::Tools;
19
20 use Any::Moose;
21
22 with 'LaTeX::TikZ::Mod';
23
24 has 'width' => (
25  is       => 'ro',
26  isa      => 'Int',
27  required => 1,
28 );
29
30 sub tag { ref $_[0] }
31
32 sub cover { LaTeX::TikZ::Tools::numeq($_[0]->width, $_[1]->width) }
33
34 sub declare { }
35
36 sub apply { sprintf 'line width=%0.1fpt', $_[1]->thickness($_[0]->width) }
37
38 use LaTeX::TikZ::API width => sub {
39  shift;
40
41  __PACKAGE__->new(width => $_[0]);
42 };
43
44 __PACKAGE__->meta->make_immutable;
45
46 =head1 AUTHOR
47
48 Vincent Pit, C<< <perl at profvince.com> >>, L<http://www.profvince.com>.
49
50 You can contact me by mail or on C<irc.perl.org> (vincent).
51
52 =head1 BUGS
53
54 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>.
55 I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
56
57 =head1 SUPPORT
58
59 You can find documentation for this module with the perldoc command.
60
61     perldoc LaTeX::TikZ
62
63 =head1 COPYRIGHT & LICENSE
64
65 Copyright 2010 Vincent Pit, all rights reserved.
66
67 This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
68
69 =cut
70
71 1; # End of LaTeX::TikZ::Mod::Width