This repository has been archived by the owner on Nov 10, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
SVGGraphAxisDoubleEnded.php
83 lines (74 loc) · 2.52 KB
/
SVGGraphAxisDoubleEnded.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
<?php
/**
* Copyright (C) 2013-2015 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]>
*/
require_once 'SVGGraphAxis.php';
/**
* Class for axis with +ve on both sides of zero
*/
class AxisDoubleEnded extends Axis{
/**
* Constructor calls Axis constructor with 1/5 length
*/
public function __construct($length, $max_val, $min_val, $min_unit, $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, $fit,
$units_before, $units_after, $decimal_digits, $label_callback);
}
/**
* 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($min_space, $start)
{
$points = parent::GetGridPoints($min_space, $start);
$new_points = array();
$z = $this->Zero();
foreach($points as $p) {
$new_points[] = new GridPoint($p->position + $z, $p->text, $p->value);
if($p->value != 0)
$new_points[] = new GridPoint((2 * $start) + $z - $p->position, $p->text, $p->value);
}
usort($new_points, ($this->direction < 0 ? 'gridpoint_rsort' : 'gridpoint_sort'));
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 = array();
$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;
}
}