package Data::Vitals::Chest; =pod =head1 NAME Data::Vitals::Chest - A measurement of the circumference of the torso at the chest/bust =head1 INHERITANCE Data::Vitals::Circumference `--> Data::Vitals::Chest =head1 DESCRIPTION Data::Vitals::Chest is part of the L. It is a very simple class that allows you to create objects that represent a single measurement of the circumference of the human torso at the chest. In women, this measurement is also known as the "bust" measurement, and is a component of the equation used to determine bra size. =head2 Taking this Measurement The chest measurement is taken with a tape measure around the torso, with the tape loose, but just tight enough to avoid the tape falling. The measurement should be taken at the largest point, and includes the breast. In both men and women this usually means taking the measurement so that the tape runs over the nippples. More information and diagrams are available at L. =head1 METHODS Data::Vitals::Chest is implemented primarily in L and shares all its methods. Data::Vitals::Chest does not have any additional methods unique to it. =cut use strict; use base 'Data::Vitals::Circumference'; use vars qw{$VERSION}; BEGIN { $VERSION = '0.05'; } 1; =pod =head1 SUPPORT Bugs should always be reported via the CPAN bug tracker L For other issues, contact the maintainer. =head1 AUTHORS Adam Kennedy Eadamk@cpan.orgE =head1 ACKNOWLEGEMENTS Thank you to Phase N (L) for permitting the open sourcing and release of this distribution. =head1 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. =cut