]> git.vpit.fr Git - perl/modules/LaTeX-TikZ.git/blob - lib/LaTeX/TikZ/Tools.pm
First cut at the documentation
[perl/modules/LaTeX-TikZ.git] / lib / LaTeX / TikZ / Tools.pm
1 package LaTeX::TikZ::Tools;
2
3 use strict;
4 use warnings;
5
6 =head1 NAME
7
8 LaTeX::TikZ::Tools - Miscellanous tools for LaTeX::TikZ classes.
9
10 =head1 VERSION
11
12 Version 0.01
13
14 =cut
15
16 our $VERSION = '0.01';
17
18 use Any::Moose 'Util::TypeConstraints' => [ 'find_type_constraint' ];
19
20 =head1 CONSTANTS
21
22 =head2 C<EPS>
23
24 =cut
25
26 use constant EPS => 1e-10;
27
28 =head1 FUNCTIONS
29
30 =head2 C<numeq>
31
32 =cut
33
34 sub numeq { abs($_[0] - $_[1]) < EPS }
35
36 =head2 C<numcmp>
37
38 =cut
39
40 sub numcmp { $_[0] < $_[1] - EPS ? -1 : $_[0] > $_[1] + EPS ? 1 : 0 }
41
42 =head2 C<numround>
43
44 =cut
45
46 sub numround {
47  my $x = $_[0];
48  my $i = int $x;
49  $x + EPS < $i + 0.5 ? $i : $i + 1;
50 }
51
52 =head2 C<type_constraint $class>
53
54 Find the type constraint for C<$class> by loading the relevant F<.pm> file beforehand.
55
56 =cut
57
58 sub type_constraint {
59  my ($class) = @_;
60
61  my $file = $class;
62  $file =~ s{::}{/}g;
63  $file .= '.pm';
64  require $file;
65
66  find_type_constraint($class);
67 }
68
69 =head1 AUTHOR
70
71 Vincent Pit, C<< <perl at profvince.com> >>, L<http://www.profvince.com>.
72
73 You can contact me by mail or on C<irc.perl.org> (vincent).
74
75 =head1 BUGS
76
77 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>.
78 I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
79
80 =head1 SUPPORT
81
82 You can find documentation for this module with the perldoc command.
83
84     perldoc LaTeX::TikZ
85
86 =head1 COPYRIGHT & LICENSE
87
88 Copyright 2010 Vincent Pit, all rights reserved.
89
90 This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
91
92 =cut
93
94 1; # End of LaTeX::TikZ::Tools