1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
|
package Math::Vector::Real::XS;
our $VERSION = '0.10';
use strict;
local $^W;
require XSLoader;
XSLoader::load('Math::Vector::Real::XS', $VERSION);
1;
__END__
=head1 NAME
Math::Vector::Real::XS - Real vector arithmetic in fast XS
=head1 SYNOPSIS
use Math::Vector::Real;
...
=head1 DESCRIPTION
This module reimplements most of the functions in
L<Math::Vector::Real> in XS for a great performance boost.
Once this module is installed, L<Math::Vector::Real> will load and use
it automatically.
=head1 SUPPORT
In order to report bugs you can send me and email to the address that
appears below or use the CPAN RT bug-tracking system available at
L<http://rt.cpan.org>.
The source for the development version of the module is hosted at
GitHub: L<https://github.com/salva/p5-Math-Vector-Real-XS>.
=head2 My wishlist
If you like this module and you're feeling generous, take a look at my
wishlist: L<http://amzn.com/w/1WU1P6IR5QZ42>
=head1 COPYRIGHT AND LICENSE
Copyright (C) 2012-2015 by Salvador FandiE<ntilde>o (sfandino@yahoo.com).
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself, either Perl version 5.14.2 or,
at your option, any later version of Perl 5 you may have available.
=cut
|