Show
Ignore:
Timestamp:
06/04/07 01:04:20 (3 years ago)
Author:
eevee
Message:

Berrydex is go. (part of #10)

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • veekun/trunk/lib/Vee/Dex.pm

    r203 r212  
    497497=cut 
    498498 
    499 sub height_imperial { my $in = Vee::Utils::round($_[0] / 0.254); int($in / 12) . "'" . ($in % 12) . '"' } 
     499sub height_imperial { my $in = Vee::Utils::round($_[0] / 0.254, 1); ($in >= 12 && int($in / 12) . "'") . ($in - int($in / 12)) . '"' } 
    500500sub weight_imperial { Vee::Utils::round($_[0] / 4.536, 1) . ' lb' } 
    501501sub height_metric { $_[0] / 10 . ' m' }