The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Data::Vitals::Util - Utility methods for the Perl "Vital Statistics" Library

DESCRIPTION

Data::Vitals::Util defines a set of functions that are used in various places within the Data::Vitals classes.

All functions are importable using the standard Exporter mechanism

  use Data::Vitals::Util 'cm2inch';

FUNCTIONS

cm2inch $cm

The cm2inch function is a specialised method for converting a centimetre measurement to inchs. It converts using the standard 2.54004 multiplier, but rounds down to the half-inch.

The algorithm used is specifically designed so that, when used as a pair with the inch2cm method, any value that cm2inch(inch2cm($x)) == $x is always true, although it may not be true of the reverse.

It takes as argument a number without any 'cm' indicator, and returns the number of inches as a similar plain number.

inch2cm $cm

The inch2cm function is a specialised method for converting an inch measurement to centimetres. It converts using the standard 2.54004 multiplier, but rounds up to the nearest centimetre.

The algorithm used is specifically designed so that, when used as a pair with the cm2inch method, any value that cm2inch(inch2cm($x)) == $x is always true, although it may not be true of the reverse.

It takes as argument a number without any 'inch' indicator, and returns the number of centimetres as a similar plain number.

SUPPORT

Bugs should always be reported via the CPAN bug tracker

http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Data-Vitals

For other issues, contact the maintainer.

AUTHORS

Adam Kennedy <adamk@cpan.org>

ACKNOWLEGEMENTS

Thank you to Phase N (http://phase-n.com/) for permitting the open sourcing and release of this distribution.

COPYRIGHT

Copyright 2004 - 2008 Adam Kennedy.

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

The full text of the license can be found in the LICENSE file included with this module.