X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=lib%2FLaTeX%2FTikZ%2FTools.pm;h=f4e536e7989636f02a52e7854fbdb207054e4d58;hb=3661d7849ae4636b74000e33e068493d90ed8337;hp=6daa93d7faf747b1b57f7d83ef4481771be877d0;hpb=0f9d7c1a2d11bc7001fe450cb2086e67c13a39e9;p=perl%2Fmodules%2FLaTeX-TikZ.git diff --git a/lib/LaTeX/TikZ/Tools.pm b/lib/LaTeX/TikZ/Tools.pm index 6daa93d..f4e536e 100644 --- a/lib/LaTeX/TikZ/Tools.pm +++ b/lib/LaTeX/TikZ/Tools.pm @@ -5,41 +5,50 @@ use warnings; =head1 NAME -LaTeX::TikZ::Tools - Miscellanous tools for LaTeX::TikZ classes. +LaTeX::TikZ::Tools - Miscellaneous tools for LaTeX::TikZ classes. =head1 VERSION -Version 0.01 +Version 0.02 =cut -our $VERSION = '0.01'; +our $VERSION = '0.02'; -use Any::Moose 'Util::TypeConstraints' => [ 'find_type_constraint' ]; +use Mouse::Util::TypeConstraints 'find_type_constraint'; =head1 CONSTANTS =head2 C +The numerical accuracy enforced by L, L and L. +It is currently set to C<1e-10>. + =cut use constant EPS => 1e-10; =head1 FUNCTIONS -=head2 C +=head2 C + +Returns true if and only if C<$x> and C<$y> are equal up to L. =cut sub numeq { abs($_[0] - $_[1]) < EPS } -=head2 C +=head2 C + +Returns a negative number, zero, or a positive number when C<$x> is respectively smaller than, equal to, or greater than C<$y> up to L. =cut sub numcmp { $_[0] < $_[1] - EPS ? -1 : $_[0] > $_[1] + EPS ? 1 : 0 } -=head2 C +=head2 C + +Returns the closest integer from C<$x> up to L. =cut @@ -51,7 +60,7 @@ sub numround { =head2 C -Find the type constraint for C<$class> by loading the relevant F<.pm> file beforehand. +Finds the type constraint for C<$class> by first trying to load the relevant F<.pm> file. =cut @@ -61,7 +70,13 @@ sub type_constraint { my $file = $class; $file =~ s{::}{/}g; $file .= '.pm'; - require $file; + unless ($INC{$file}) { + local $@; + eval { + local $SIG{__DIE__}; # See LaTeX::TikZ::Meta::TypeConstraint::Autocoerce + require $file; + } + } find_type_constraint($class); }