File Coverage

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


line stmt bran cond sub pod time code
1             package SVG::Estimate::Role::SegmentLength;
2             $SVG::Estimate::Role::SegmentLength::VERSION = '1.0107';
3 6     6   1890 use strict;
  6         7  
  6         133  
4 6     6   15 use Moo::Role;
  6         5  
  6         25  
5              
6             =head1 NAME
7              
8             SVG::Estimate::Role::SegmentLength - Estimate the distance along a curve
9              
10             =head1 VERSION
11              
12             version 1.0107
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 717     717 1 458 my $class = shift;
24 717         593 my ($args, $t0, $t1, $start, $end, $error, $min_depth, $depth) = @_;
25 717         537 my $th = ($t1 + $t0) / 2; ##half-way
26 717         838 my $mid = $class->this_point($args, $th);
27 717 100       956 $args->{min_x} = $mid->[0] if $mid->[0] < $args->{min_x};
28 717 50       803 $args->{max_x} = $mid->[0] if $mid->[0] > $args->{max_x};
29 717 50       792 $args->{min_y} = $mid->[1] if $mid->[1] < $args->{min_y};
30 717 100       763 $args->{max_y} = $mid->[1] if $mid->[1] > $args->{max_y};
31 717         842 my $length = $class->pythagorean($start, $end); ##Segment from start to end
32 717         787 my $left = $class->pythagorean($start, $mid);
33 717         776 my $right = $class->pythagorean($mid, $end);
34 717         487 my $length2 = $left + $right; ##Sum of segments through midpoint
35 717 100 66     1394 if ($length2 - $length > $error || $depth < $min_depth) {
36 357         195 ++$depth;
37 357         427 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 360         727 return $length2;
41             }
42              
43             1;