-
Notifications
You must be signed in to change notification settings - Fork 31
/
AxisDoubleEnded.php
97 lines (87 loc) · 2.82 KB
/
AxisDoubleEnded.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<?php
/**
* Copyright (C) 2013-2020 Graham Breach
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* For more information, please contact <[email protected]>
*/
namespace Goat1000\SVGGraph;
/**
* Class for axis with +ve on both sides of zero
*/
class AxisDoubleEnded extends Axis {
/**
* Constructor calls Axis constructor with 0.5 * length
*/
public function __construct($length, $max_val, $min_val, $min_unit, $min_space,
$fit, $units_before, $units_after, $decimal_digits, $label_callback)
{
if($min_val < 0)
throw new \Exception('Negative value for double-ended axis');
parent::__construct($length / 2, $max_val, $min_val, $min_unit, $min_space,
$fit, $units_before, $units_after, $decimal_digits, $label_callback, false);
}
/**
* Return the full axis length, not the 1/2 length
*/
public function getLength()
{
return $this->length * 2;
}
/**
* Returns the distance along the axis where 0 should be
*/
public function zero()
{
return $this->zero = $this->length;
}
/**
* Returns the grid points as an array of GridPoints
*/
public function getGridPoints($start)
{
$points = parent::getGridPoints($start);
if($start === null)
return;
$new_points = [];
$z = $this->zero();
foreach($points as $p) {
$new_points[] = new GridPoint($p->position + $z, $p->getText(), $p->value);
if($p->value != 0)
$new_points[] = new GridPoint((2 * $start) + $z - $p->position, $p->getText(), $p->value);
}
if($this->direction < 0) {
usort($new_points, function($a, $b) { return $b->position - $a->position; });
} else {
usort($new_points, function($a, $b) { return $a->position - $b->position; });
}
return $new_points;
}
/**
* Returns the grid subdivision points as an array
*/
public function getGridSubdivisions($min_space, $min_unit, $start, $fixed)
{
$divs = parent::getGridSubdivisions($min_space, $min_unit, $start, $fixed);
$new_divs = [];
$z = $this->zero();
foreach($divs as $d) {
$new_divs[] = new GridPoint($d->position + $z, '', 0);
$new_divs[] = new GridPoint((2 * $start) + $z - $d->position, '', 0);
}
return $new_divs;
}
}