File Coverage

blib/lib/Math/PlanePath/KochSquareflakes.pm
Criterion Covered Total %
statement 212 245 86.5
branch 68 90 75.5
condition 13 14 92.8
subroutine 23 25 92.0
pod 5 5 100.0
total 321 379 84.7


line stmt bran cond sub pod time code
1             # Copyright 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 Kevin Ryde
2              
3             # This file is part of Math-PlanePath.
4             #
5             # Math-PlanePath is free software; you can redistribute it and/or modify it
6             # under the terms of the GNU General Public License as published by the Free
7             # Software Foundation; either version 3, or (at your option) any later
8             # version.
9             #
10             # Math-PlanePath is distributed in the hope that it will be useful, but
11             # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
12             # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
13             # for more details.
14             #
15             # You should have received a copy of the GNU General Public License along
16             # with Math-PlanePath. If not, see .
17              
18              
19             package Math::PlanePath::KochSquareflakes;
20 1     1   9629 use 5.004;
  1         9  
21 1     1   5 use strict;
  1         2  
  1         29  
22              
23 1     1   4 use vars '$VERSION', '@ISA';
  1         3  
  1         65  
24             $VERSION = 129;
25 1     1   772 use Math::PlanePath;
  1         2  
  1         51  
26             @ISA = ('Math::PlanePath');
27             *_divrem = \&Math::PlanePath::_divrem;
28              
29             use Math::PlanePath::Base::Generic
30 1         45 'is_infinite',
31 1     1   7 'round_nearest';
  1         2  
32             use Math::PlanePath::Base::Digits
33 1         63 'round_down_pow',
34 1     1   536 'digit_split_lowtohigh';
  1         3  
35              
36             # uncomment this to run the ### lines
37             #use Devel::Comments;
38              
39              
40 1     1   7 use constant n_frac_discontinuity => 0;
  1         1  
  1         80  
41              
42 1         48 use constant parameter_info_array =>
43             [ { name => 'inward',
44             display => 'Inward',
45             type => 'boolean',
46             default => 0,
47             description => 'Whether to direct the sides of the square inward, rather than outward.',
48 1     1   6 } ];
  1         2  
49              
50 1     1   6 use constant x_negative_at_n => 1;
  1         2  
  1         51  
51 1     1   7 use constant y_negative_at_n => 1;
  1         2  
  1         43  
52 1     1   5 use constant sumabsxy_minimum => 1;
  1         2  
  1         62  
53 1     1   13 use constant rsquared_minimum => 0.5; # minimum X=0.5,Y=0.5
  1         4  
  1         46  
54              
55             # jump across rings is South-West, so
56 1     1   6 use constant dx_maximum => 1;
  1         2  
  1         61  
57 1     1   7 use constant dy_maximum => 1;
  1         1  
  1         50  
58 1     1   6 use constant dsumxy_maximum => 2; # diagonal NE
  1         2  
  1         40  
59 1     1   5 use constant ddiffxy_maximum => 2;
  1         2  
  1         50  
60 1     1   6 use constant ddiffxy_minimum => -2;
  1         2  
  1         43  
61 1     1   5 use constant dir_maximum_dxdy => (1,-1); # South-East
  1         2  
  1         69  
62              
63             # N=1,2,3,4 gcd(1/2,1/2) = 1/2
64 1     1   6 use constant gcdxy_minimum => 1/2;
  1         2  
  1         51  
65              
66 1     1   6 use constant turn_any_straight => 0; # never straight
  1         2  
  1         1428  
67              
68              
69             #------------------------------------------------------------------------------
70              
71             # level 0 inner square
72             # sidelen = 4^level
73             # ring points 4*4^level
74             # Nend = 4 * [ 1 + ... + 4^level ]
75             # = 4 * (4^(level+1) - 1) / 3
76             # = (4^(level+2) - 4) / 3
77             # Nstart = Nend(level-1) + 1
78             # = (4^(level+1) - 4) / 3 + 1
79             # = (4^(level+1) - 4 + 3) / 3
80             # = (4^(level+1) - 1) / 3
81             #
82             # level Nstart Nend
83             # 0 (4-1)/3=1 (16-4)/3=12/3=4
84             # 1 (16-1)/3=15/3=5 (64-4)/3=60/3=20
85             # 2 (64-1)/3=63/3=21 (256-4)/3=252/3=84
86             # 3 (256-1)/3=255/3=85
87             #
88              
89             sub n_to_xy {
90 190     190 1 2713 my ($self, $n) = @_;
91             ### KochSquareflakes n_to_xy(): $n
92 190 50       462 if ($n < 1) { return; }
  0         0  
93              
94 190         251 my $frac;
95             {
96 190         263 my $int = int($n);
  190         292  
97 190         255 $frac = $n - $int;
98 190         268 $n = $int; # BigFloat int() gives BigInt, use that
99             }
100              
101             # (4^(level+1) - 1) / 3 = N
102             # 4^(level+1) - 1 = 3*N
103             # 4^(level+1) = 3*N+1
104             #
105 190         479 my ($pow,$level) = round_down_pow (3*$n + 1, 4);
106             ### $level
107             ### $pow
108 190 50       472 if (is_infinite($level)) { return ($level,$level); }
  0         0  
109              
110             # Nstart = (4^(level+1)-1)/3 with $power=4^(level+1) here
111             #
112 190         460 $n -= ($pow-1)/3;
113              
114             ### base: ($pow-1)/3
115             ### next base would be: (4*$pow-1)/3
116             ### n remainder from base: $n
117              
118 190         287 my $sidelen = $pow/4;
119 190         450 (my $rot, $n) = _divrem ($n, $sidelen); # high part is rot
120             ### $sidelen
121             ### n remainder: $n
122             ### $rot
123              
124             ### assert: $n>=0
125             ### assert: $n < 4 ** $level
126              
127 190         341 my @horiz = (1);
128 190         293 my @diag = (1);
129 190         255 my $i = 0;
130 190         375 while (--$level > 0) {
131 386         671 $horiz[$i+1] = 2*$horiz[$i] + 2*$diag[$i];
132 386         638 $diag[$i+1] = $horiz[$i] + 2*$diag[$i];
133             ### horiz: $horiz[$i+1]
134             ### diag: $diag[$i+1]
135 386         731 $i++;
136             }
137              
138             ### horiz: join(', ',@horiz)
139             ### $i
140 190         406 my $x
141             = my $y
142             = ($n * 0) + $horiz[$i]/-2; # inherit bignum
143 190 100       395 if ($rot & 1) {
144 87         174 ($x,$y) = (-$y,$x);
145             }
146 190 100       351 if ($rot & 2) {
147 87         135 $x = -$x;
148 87         125 $y = -$y;
149             }
150 190         275 $rot *= 2;
151              
152 190         302 my $inward = $self->{'inward'};
153 190         450 my @digits = digit_split_lowtohigh($n,4);
154              
155 190         423 while ($i > 0) {
156 386         510 $i--;
157 386   100     857 my $digit = $digits[$i] || 0;
158              
159 386         547 my ($dx, $dy, $drot);
160 386 100       802 if ($digit == 0) {
    100          
    100          
    50          
161 149         195 $dx = 0;
162 149         194 $dy = 0;
163 149         203 $drot = 0;
164             } elsif ($digit == 1) {
165 72 100       126 if ($rot & 1) {
166 16         20 $dx = $diag[$i];
167 16         22 $dy = $diag[$i];
168             } else {
169 56         85 $dx = $horiz[$i];
170 56         79 $dy = 0;
171             }
172 72 100       120 $drot = ($inward ? 1 : -1);
173             } elsif ($digit == 2) {
174 72 100       127 if ($rot & 1) {
175 16 100       26 if ($inward) {
176 8         14 $dx = $diag[$i];
177 8         14 $dy = $diag[$i] + $horiz[$i];
178             } else {
179 8         12 $dx = $diag[$i] + $horiz[$i];
180 8         18 $dy = $diag[$i];
181             }
182             } else {
183 56         89 $dx = $horiz[$i] + $diag[$i];
184 56         75 $dy = $diag[$i];
185 56 100       120 unless ($inward) { $dy = -$dy; }
  28         47  
186             }
187 72 100       122 $drot = ($inward ? -1 : 1);
188             } elsif ($digit == 3) {
189 93 100       170 if ($rot & 1) {
190 16         28 $dx = $dy = $diag[$i] + $horiz[$i];
191             } else {
192 77         112 $dx = $horiz[$i] + 2*$diag[$i];
193 77         118 $dy = 0;
194             }
195 93         118 $drot = 0;
196             }
197             ### delta: "$dx,$dy rot=$rot drot=$drot"
198              
199 386 100       709 if ($rot & 2) {
200 165         280 ($dx,$dy) = (-$dy,$dx);
201             }
202 386 100       649 if ($rot & 4) {
203 165         228 $dx = -$dx;
204 165         206 $dy = -$dy;
205             }
206             ### delta with rot: "$dx,$dy"
207              
208 386         520 $x += $dx;
209 386         496 $y += $dy;
210 386         742 $rot += $drot;
211             }
212              
213             {
214 190         278 my $dx = $frac;
  190         271  
215 190 100       309 my $dy = ($rot & 1 ? $frac : 0);
216 190 100       344 if ($rot & 2) {
217 87         159 ($dx,$dy) = (-$dy,$dx);
218             }
219 190 100       341 if ($rot & 4) {
220 87         129 $dx = -$dx;
221 87         123 $dy = -$dy;
222             }
223 190         250 $x = $dx + $x;
224 190         283 $y = $dy + $y;
225             }
226              
227 190         553 return ($x,$y);
228             }
229              
230             my @inner_to_n = (1,2,4,3);
231              
232             sub xy_to_n {
233 880     880 1 25685 my ($self, $x, $y) = @_;
234             ### KochSquareflakes xy_to_n(): "$x, $y"
235              
236             # +/- 0.75
237 880 50 100     2674 if (4*$x < 3 && 4*$y < 3 && 4*$x >= -3 && 4*$y >= -3) {
      100        
      66        
238 0         0 return $inner_to_n[($x >= 0) + 2*($y >= 0)];
239             }
240              
241 880         1857 $x = round_nearest($x);
242 880         1700 $y = round_nearest($y);
243              
244             # quarter curve segment and high digit
245 880         1274 my $n;
246             {
247 880         1159 my $negx = -$x;
  880         1261  
248 880 100       1772 if (($y > 0 ? $x > $y : $x >= $y)) {
    100          
249             ### below leading diagonal ...
250 440 100       730 if ($negx > $y) {
251             ### bottom quarter ...
252 220         327 $n = 1;
253             } else {
254             ### right quarter ...
255 220         343 $n = 2;
256 220         383 ($x,$y) = ($y, $negx); # rotate -90
257             }
258             } else {
259             ### above leading diagonal
260 440 100       721 if ($y > $negx) {
261             ### top quarter ...
262 220         282 $n = 3;
263 220         302 $x = $negx; # rotate 180
264 220         328 $y = -$y;
265             } else {
266             ### right quarter ...
267 220         288 $n = 4;
268 220         444 ($x,$y) = (-$y, $x); # rotate +90
269             }
270             }
271             }
272 880         1265 $y = -$y;
273             ### rotate to: "$x,$y n=$n"
274              
275 880 50       1632 if (is_infinite($x)) {
276 0         0 return $x;
277             }
278 880 50       1927 if (is_infinite($y)) {
279 0         0 return $y;
280             }
281              
282 880         1473 my @horiz;
283             my @diag;
284 880         1187 my $horiz = 1;
285 880         1133 my $diag = 1;
286 880         1107 for (;;) {
287 1664         2369 push @horiz, $horiz;
288 1664         2196 push @diag, $diag;
289 1664         2328 my $offset = $horiz+$diag;
290 1664         2237 my $nextdiag = $offset + $diag; # horiz + 2*diag
291             ### $horiz
292             ### $diag
293             ### $offset
294             ### $nextdiag
295              
296 1664 100       2870 if ($y <= $nextdiag) {
297             ### found level at: "top=$nextdiag vs y=$y"
298 880         1180 $y -= $offset;
299 880         1161 $x += $offset;
300 880         1278 last;
301             }
302 784         1035 $horiz = 2*$offset; # 2*horiz+2*diag
303 784         1092 $diag = $nextdiag;
304             }
305             ### base subtract to: "$x,$y"
306              
307              
308 880 100       1590 if ($self->{'inward'}) {
309 440         661 $y = -$y;
310             ### inward invert to: "$x,$y"
311             }
312              
313             ### origin based side: "$x,$y horiz=$horiz diag=$diag with levels ".scalar(@horiz)
314              
315             # loop 4*1, 4*4, 4*4^2 etc, extra +1 on the digits to include that in the sum
316             #
317 880         1151 my $slope;
318 880         1660 while (@horiz) {
319             ### at: "$x,$y slope=".($slope||0)." n=$n"
320 1664         2479 $horiz = pop @horiz;
321 1664         2271 $diag = pop @diag;
322 1664         2195 $n *= 4;
323              
324 1664 100       2519 if ($slope) {
325 336 100       514 if ($y < $diag) {
326             ### slope digit 0 ...
327 152         314 $n += 1;
328             } else {
329 184         245 $x -= $diag;
330 184         237 $y -= $diag;
331             ### slope not digit 0, move to: "$x,$y"
332              
333 184 100       278 if ($y < $horiz) {
334             ### digit 1 ...
335 80         125 $n += 2;
336 80         130 ($x,$y) = ($y, -$x); # rotate -90
337 80         231 $slope = 0;
338             } else {
339 104         145 $y -= $horiz;
340             ### slope not digit 1, move to: "$x,$y"
341              
342 104 100       169 if ($x < $horiz) {
343             ### digit 2 ...
344 48         69 $n += 3;
345 48         85 $slope = 0;
346              
347             } else {
348             ### digit 3 ...
349 56         70 $n += 4;
350 56         112 $x -= $horiz;
351             }
352             }
353             }
354              
355             } else {
356 1328 100       2089 if ($x < $horiz) {
357             ### digit 0 ...
358 384         693 $n += 1;
359             } else {
360 944         1254 $x -= $horiz;
361             ### not digit 0, move to: "$x,$y"
362              
363 944 100       1466 if ($x < $diag) {
364             ### digit 1 ...
365 280         370 $n += 2;
366 280         541 $slope = 1;
367             } else {
368 664         889 $x -= $diag;
369             ### not digit 1, move to: "$x,$y"
370              
371 664 100       1033 if ($x < $diag) {
372             ### digit 2 ...
373 280         392 $n += 3;
374 280         382 $slope = 1;
375 280         744 ($x,$y) = ($diag-$y, $x); # offset and rotate +90
376              
377             } else {
378             ### digit 3 ...
379 384         504 $n += 4;
380 384         733 $x -= $diag;
381             }
382             }
383             }
384             }
385             }
386             ### final: "$x,$y n=$n"
387              
388 880 100 100     2210 if ($x == 0 && $y == 0) {
389 160         356 return $n;
390             } else {
391 720         1575 return undef;
392             }
393             }
394              
395             # not exact
396             sub rect_to_n_range {
397 0     0 1 0 my ($self, $x1,$y1, $x2,$y2) = @_;
398             ### KochSquareflakes rect_to_n_range(): "$x1,$y1 $x2,$y2"
399              
400 0         0 foreach ($x1,$y1, $x2,$y2) {
401 0 0       0 if (is_infinite($_)) {
402 0         0 return (0, $_);
403             }
404 0         0 $_ = abs(round_nearest($_));
405             }
406 0 0       0 if ($x1 > $x2) { ($x1,$x2) = ($x2,$x1); }
  0         0  
407 0 0       0 if ($y1 > $y2) { ($y1,$y2) = ($y2,$y1); }
  0         0  
408 0 0       0 my $max = ($x2 > $y2 ? $x2 : $y2);
409              
410             # Nend = 4 * [ 1 + ... + 4^level ]
411             # = 4 + 16 + ... + 4^(level+1)
412             #
413 0         0 my $horiz = 4;
414 0         0 my $diag = 3;
415 0         0 my $nhi = 4;
416 0         0 for (;;) {
417 0         0 $nhi += 1;
418 0         0 $nhi *= 4;
419 0         0 my $nextdiag = $horiz + 2*$diag;
420 0 0       0 if (($self->{'inward'} ? $horiz : $nextdiag) >= 2*$max) {
    0          
421 0         0 return (1, $nhi);
422             }
423 0         0 $horiz = $nextdiag + $horiz; # 2*$horiz + 2*$diag;
424 0         0 $diag = $nextdiag;
425             }
426             }
427              
428              
429             #------------------------------------------------------------------------------
430             # Nstart = (4^(k+1) - 1)/3
431             # Nend = Nstart(k+1) - 1
432             # = (4*4^(k+1) - 1)/3 - 1
433             # = (4*4^(k+1) - 1 - 3)/3
434             # = (4*4^(k+1) - 4)/3
435             # = 4*(4^(k+1) - 1)/3
436             # = 4*Nstart(k)
437              
438             sub level_to_n_range {
439 10     10 1 1016 my ($self, $level) = @_;
440 10         30 my $n_lo = (4**($level+1) - 1)/3;
441 10         29 return ($n_lo, 4*$n_lo);
442             }
443             sub n_to_level {
444 0     0 1   my ($self, $n) = @_;
445 0 0         if ($n < 1) { return undef; }
  0            
446 0 0         if (is_infinite($n)) { return $n; }
  0            
447 0           my ($pow,$exp) = round_down_pow (3*$n + 1, 4);
448 0           return $exp-1;
449             }
450              
451             #------------------------------------------------------------------------------
452             1;
453             __END__