The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Math::PlanePath::DigitGroups -- X,Y digits grouped by zeros

SYNOPSIS

 use Math::PlanePath::DigitGroups;

 my $path = Math::PlanePath::DigitGroups->new (radix => 2);
 my ($x, $y) = $path->n_to_xy (123);

DESCRIPTION

This path splits an N into X,Y by digit groups with a leading 0. The default is binary so for example

    N = 110111001011

is split into groups with a high 0 digit which go to X or Y alternately,

    11 0111 0 01 011
     X   Y  X  Y  X

    X = 11 0 011 = 110011
    Y = 0111 01  = 11101

The result is a one-to-one mapping between numbers N>=0 and pairs X>=0,Y>=0.

The default binary is

    11  |   38   77   86  155  166  173  182  311  550  333  342  347
    10  |   72  145  148  291  168  297  300  583  328  337  340  595
     9  |   66  133  138  267  162  277  282  535  322  325  330  555
     8  |  128  257  260  515  272  521  524 1031  320  545  548 1043
     7  |   14   29   46   59  142   93  110  119  526  285  302  187
     6  |   24   49   52   99   88  105  108  199  280  177  180  211
     5  |   18   37   42   75   82   85   90  151  274  165  170  171
     4  |   32   65   68  131   80  137  140  263  160  161  164  275
     3  |    6   13   22   27   70   45   54   55  262  141  150   91
     2  |    8   17   20   35   40   41   44   71  136   81   84   83
     1  |    2    5   10   11   34   21   26   23  130   69   74   43
    Y=0 |    0    1    4    3   16    9   12    7   64   33   36   19
        +-------------------------------------------------------------
           X=0    1    2    3    4    5    6    7    8    9   10   11

Radix

The radix => $r option selects a different base for the digit split. For example radix => 5 gives

   12  |  60  301  302  303  304  685 1506 1507 1508 1509 1310 1511 
   11  |  55  276  277  278  279  680 1381 1382 1383 1384 1305 1386 
   10  | 250 1251 1252 1253 1254 1275 6256 6257 6258 6259 1300 6261 
    9  |  45  226  227  228  229  670 1131 1132 1133 1134 1295 1136 
    8  |  40  201  202  203  204  665 1006 1007 1008 1009 1290 1011 
    7  |  35  176  177  178  179  660  881  882  883  884 1285  886 
    6  |  30  151  152  153  154  655  756  757  758  759 1280  761 
    5  | 125  626  627  628  629  650 3131 3132 3133 3134  675 3136 
    4  |  20  101  102  103  104  145  506  507  508  509  270  511 
    3  |  15   76   77   78   79  140  381  382  383  384  265  386 
    2  |  10   51   52   53   54  135  256  257  258  259  260  261 
    1  |   5   26   27   28   29  130  131  132  133  134  255  136 
   Y=0 |   0    1    2    3    4   25    6    7    8    9   50   11 
       +-----------------------------------------------------------
         X=0    1    2    3    4    5    6    7    8    9   10   11

Real Line and Plane

This split is inspired by the digit grouping in the proof that the real line is the same cardinality as the plane. (By Cantor was it?) In that proof a bijection between interval n=(0,1) and pairs x=(0,1),y=(0,1) is made by taking groups of fraction digits stopping at a non-zero digit.

Non-terminating fractions like 0.49999... are chosen over terminating 0.5000... so there's infinitely many non-zero digits going lower. For the integer form here the groupings are towards higher digits and there's infinitely many zero digits going higher, hence grouping by zeros instead of non-zeros.

FUNCTIONS

See "FUNCTIONS" in Math::PlanePath for the behaviour common to all path classes.

$path = Math::PlanePath::DigitGroups->new ()
$path = Math::PlanePath::DigitGroups->new (radix => $r)

Create and return a new path object. The optional radix parameter gives the base for digit splitting (the default is binary, radix 2).

($x,$y) = $path->n_to_xy ($n)

Return the X,Y coordinates of point number $n on the path. Points begin at 0 and if $n < 0 then the return is an empty list.

SEE ALSO

Math::PlanePath, Math::PlanePath::ZOrderCurve

HOME PAGE

http://user42.tuxfamily.org/math-planepath/index.html

LICENSE

Copyright 2011 Kevin Ryde

This file is part of Math-PlanePath.

Math-PlanePath is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3, or (at your option) any later version.

Math-PlanePath is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with Math-PlanePath. If not, see <http://www.gnu.org/licenses/>.