File Coverage

lib/SDL2/FPoint.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1              
2             package SDL2::FPoint {
3 2     2   15 use SDL2::Utils;
  2         6  
  2         21  
4             has x => 'float', y => 'float';
5              
6             =encoding utf-8
7              
8             =head1 NAME
9              
10             SDL2::FPoint - The Structure that Defines a Point with Floating Point Numbers
11              
12             =head1 SYNOPSIS
13              
14             use SDL2 qw[:all];
15             my $point = SDL2::FPoint->new( { x => 1.5, y => 1.5 } );
16              
17             =head1 DESCRIPTION
18              
19             SDL2::FPoint
20              
21             =head1 AUTHOR
22              
23             Sanko Robinson Esanko@cpan.orgE
24              
25             =begin stopwords
26              
27             =end stopwords
28              
29             =cut
30              
31             };
32             1