Help for this page

Select Code to Download


  1. or download this
    # Scale the box and colon circles by a scale factor
    sub scale {
    ...
        $scale = $scale + 1;                             # Bump for next c
    +ycle
        return;
    }
    
  2. or download this
    # Scale the box and colon circles by a scale factor
    sub scale {
    ...
        ++$scale;                             # Bump for next cycle
        return;
    }