package Data::Vitals::Frame; =pod =head1 NAME Data::Vitals::Frame - A measurement of the circumference of the torso underneath the breasts =head1 INHERITANCE Data::Vitals::Circumference `--> Data::Vitals::Frame =head1 DESCRIPTION Data::Vitals::Frame 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 taken just beneath the breasts. Unlike the L measurement, which includes the breast and change dramatically (in both men and women) due to muscle, fat and (for women) pregnancy/lactation. As the largest point around only the rip cage, it provides a more accurate measurement of your natural "frame". For women, this is used along with L in one of the two methods used to determine bra size. =head2 Taking this Measurement The frame measurement is generally taken with a tape measure around the torso at a position just underneath the breasts. It should be as close as possible to the breasts without going over them. As with all circumference measurements, it should be close enough to prevent the tape from falling, but not pulled tight. More information and diagrams are available at L. =head1 METHODS Data::Vitals::Frame is implemented primarily in L and shares all its methods. Data::Vitals::Frame 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