Data::Vitals::Hips - A measurement of the circumference of the hips


Data-Vitals documentation Contained in the Data-Vitals distribution.

Index


Code Index:

NAME

Top

Data::Vitals::Hips - A measurement of the circumference of the hips

INHERITANCE

Top

  Data::Vitals::Circumference
  `--> Data::Vitals::Hips

DESCRIPTION

Top

Data::Vitals::Hips is part of the Perl "Vital Statistics" Library.

It is a very simple class that allows you to create objects that represent a single measurement of the circumference of the hips.

Please note that this measurement does not refer to the "high hips" measurement. This is a different value, for which a class does not yet exist.

Taking this Measurement

Place the measuring tape around the body at the fullest part of the seat. Pull the measuring tape so it conforms to the body and does not fall down, but do not pull it tight.

More information and diagrams are available at http://www.sewing.org/enthusiast/html/el_bodymeasure.html.

METHODS

Top

Data::Vitals::Hips is implemented primarily in Data::Vitals::Circumference and shares all its methods.

Data::Vitals::Hips does not have any additional methods unique to it.

SUPPORT

Top

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

Top

Adam Kennedy <adamk@cpan.org>

ACKNOWLEGEMENTS

Top

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

COPYRIGHT

Top


Data-Vitals documentation Contained in the Data-Vitals distribution.
package Data::Vitals::Hips;

use strict;
use base 'Data::Vitals::Circumference';

use vars qw{$VERSION};
BEGIN {
	$VERSION = '0.05';
}

1;