]> git.vpit.fr Git - perl/modules/LaTeX-TikZ.git/blob - lib/LaTeX/TikZ/Tools.pm
LaTeX::TikZ::Tools::type_constraint shouldn't croak when it can't find the .pm file
[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 - Miscellaneous tools for LaTeX::TikZ classes.
9
10 =head1 VERSION
11
12 Version 0.02
13
14 =cut
15
16 our $VERSION = '0.02';
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 first trying to load the relevant F<.pm> file.
55
56 =cut
57
58 sub type_constraint {
59  my ($class) = @_;
60
61  my $file = $class;
62  $file =~ s{::}{/}g;
63  $file .= '.pm';
64  unless ($INC{$file}) {
65   local $@;
66   eval {
67    local $SIG{__DIE__}; # See LaTeX::TikZ::Meta::TypeConstraint::Autocoerce
68    require $file;
69   }
70  }
71
72  find_type_constraint($class);
73 }
74
75 =head1 SEE ALSO
76
77 L<LaTeX::TikZ>.
78
79 =head1 AUTHOR
80
81 Vincent Pit, C<< <perl at profvince.com> >>, L<http://www.profvince.com>.
82
83 You can contact me by mail or on C<irc.perl.org> (vincent).
84
85 =head1 BUGS
86
87 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>.
88 I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
89
90 =head1 SUPPORT
91
92 You can find documentation for this module with the perldoc command.
93
94     perldoc LaTeX::TikZ
95
96 =head1 COPYRIGHT & LICENSE
97
98 Copyright 2010 Vincent Pit, all rights reserved.
99
100 This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
101
102 =cut
103
104 1; # End of LaTeX::TikZ::Tools