summaryrefslogtreecommitdiff
path: root/lib/Math/Trig.pm
diff options
context:
space:
mode:
authorSteve Peters <steve@fisharerojo.org>2008-01-09 02:36:33 +0000
committerSteve Peters <steve@fisharerojo.org>2008-01-09 02:36:33 +0000
commit1515bec64143d124d61662e88e4dc5160e2ea6d7 (patch)
tree84a48cfd487dec07c261f3f526047ec539c590a5 /lib/Math/Trig.pm
parentaacdad3c65e627efa06177542d8ebd91916480fa (diff)
downloadperl-1515bec64143d124d61662e88e4dc5160e2ea6d7.tar.gz
Upgrade to Math-Complex-1.42
p4raw-id: //depot/perl@32908
Diffstat (limited to 'lib/Math/Trig.pm')
-rw-r--r--lib/Math/Trig.pm11
1 files changed, 8 insertions, 3 deletions
diff --git a/lib/Math/Trig.pm b/lib/Math/Trig.pm
index b7bfbb98d1..5bd85c5a69 100644
--- a/lib/Math/Trig.pm
+++ b/lib/Math/Trig.pm
@@ -10,14 +10,14 @@ package Math::Trig;
use 5.005;
use strict;
-use Math::Complex 1.37;
+use Math::Complex 1.42;
use Math::Complex qw(:trig :pi);
use vars qw($VERSION $PACKAGE @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
@ISA = qw(Exporter);
-$VERSION = 1.05;
+$VERSION = 1.07;
my @angcnv = qw(rad2deg rad2grad
deg2rad deg2grad
@@ -44,7 +44,7 @@ my @greatcircle = qw(
my @pi = qw(pi pi2 pi4 pip2 pip4);
-@EXPORT_OK = (@rdlcnv, @greatcircle, @pi);
+@EXPORT_OK = (@rdlcnv, @greatcircle, @pi, 'Inf');
# See e.g. the following pages:
# http://www.movable-type.co.uk/scripts/LatLong.html
@@ -674,6 +674,11 @@ Do not attempt navigation using these formulas.
Jarkko Hietaniemi <F<jhi!at!iki.fi>> and
Raphael Manfredi <F<Raphael_Manfredi!at!pobox.com>>.
+=head1 LICENSE
+
+This library is free software; you can redistribute it and/or modify
+it under the same terms as Perl itself.
+
=cut
# eof