Axis::sub_division PHP Method

sub_division() private method

Subdivide when the divisions are too large
private sub_division ( $length, $min, &$count, &$neg_count, &$magnitude )
    private function sub_division($length, $min, &$count, &$neg_count, &$magnitude)
    {
        $m = $magnitude * 0.5;
        $magnitude = $m;
        $count *= 2;
        $neg_count *= 2;
    }