File Coverage

blib/lib/SecondLife/DataTypes.pm
Criterion Covered Total %
statement 21 21 100.0
branch n/a
condition n/a
subroutine 9 9 100.0
pod 3 3 100.0
total 33 33 100.0


line stmt bran cond sub pod time code
1             package SecondLife::DataTypes;
2             {
3             $SecondLife::DataTypes::VERSION = '0.900';
4             }
5             # ABSTRACT: Support for parsing, working with and printing Second Life's data types
6 1     1   30364 use strict;
  1         2  
  1         34  
7 1     1   5 use warnings;
  1         1  
  1         25  
8 1     1   562 use SecondLife::Rotation;
  1         2  
  1         51  
9 1     1   617 use SecondLife::Vector;
  1         3  
  1         33  
10 1     1   671 use SecondLife::Region;
  1         3  
  1         39  
11 1     1   1090 use Sub::Exporter -setup => { exports => [qw( slrot slvec slregion )] };
  1         10542  
  1         18  
12              
13 1     1 1 19 sub slrot($) { SecondLife::Rotation->new(@_); }
14              
15 1     1 1 22 sub slvec($) { SecondLife::Vector->new(@_); }
16              
17 1     1 1 14 sub slregion($) { SecondLife::Region->new(@_); }
18              
19             1;
20              
21              
22             __END__