File Coverage

lib/SVG/Estimate/Role/SegmentLength.pm
Criterion Covered Total %
statement 22 22 100.0
branch 10 10 100.0
condition 3 3 100.0
subroutine 3 3 100.0
pod 1 1 100.0
total 39 39 100.0


line stmt bran cond sub pod time code
1             package SVG::Estimate::Role::SegmentLength;
2             $SVG::Estimate::Role::SegmentLength::VERSION = '1.0114';
3 14     14   6281 use strict;
  14         27  
  14         432  
4 14     14   63 use Moo::Role;
  14         24  
  14         73  
5              
6             =head1 NAME
7              
8             SVG::Estimate::Role::SegmentLength - Estimate the distance along a curve
9              
10             =head1 VERSION
11              
12             version 1.0114
13              
14             =head1 METHODS
15              
16             =head2 segment_length ( args, t0, t1, start_point, end_point, tolerance, minimum_iterations, current_iteration)
17              
18             Calculate the distance along a curve using straight line approximations along segments of the curve
19              
20             =cut
21              
22             sub segment_length {
23 59894     59894 1 73809 my $class = shift;
24 59894         90369 my ($args, $t0, $t1, $start, $end, $error, $min_depth, $depth) = @_;
25 59894         77439 my $th = ($t1 + $t0) / 2; ##half-way
26 59894         100402 my $mid = $class->this_point($args, $th);
27 59894 100       115923 $args->{min_x} = $mid->[0] if $mid->[0] < $args->{min_x};
28 59894 100       94087 $args->{max_x} = $mid->[0] if $mid->[0] > $args->{max_x};
29 59894 100       86576 $args->{min_y} = $mid->[1] if $mid->[1] < $args->{min_y};
30 59894 100       88851 $args->{max_y} = $mid->[1] if $mid->[1] > $args->{max_y};
31 59894         98152 my $length = $class->pythagorean($start, $end); ##Segment from start to end
32 59894         102991 my $left = $class->pythagorean($start, $mid);
33 59894         98391 my $right = $class->pythagorean($mid, $end);
34 59894         77023 my $length2 = $left + $right; ##Sum of segments through midpoint
35 59894 100 100     160264 if ($length2 - $length > $error || $depth < $min_depth) {
36 29481         31597 ++$depth;
37 29481         47704 return $class->segment_length($args, $t0, $th, $start, $mid, $error, $min_depth, $depth)
38             + $class->segment_length($args, $th, $t1, $mid, $end, $error, $min_depth, $depth)
39             }
40 30413         95196 return $length2;
41             }
42              
43             1;