diff options
author | Derick Rethans <github@derickrethans.nl> | 2007-05-04 12:34:12 +0000 |
---|---|---|
committer | Derick Rethans <github@derickrethans.nl> | 2007-05-04 12:34:12 +0000 |
commit | c2a791c2beca35bd5659f913aebbe46a2dcc7f9e (patch) | |
tree | e2559dc76ef3482386fd25c496796c8dec54e476 | |
parent | c74433ed9b7912bc979af339c06aa4598b76a8b4 (diff) | |
download | zetacomponents-graph-c2a791c2beca35bd5659f913aebbe46a2dcc7f9e.zip zetacomponents-graph-c2a791c2beca35bd5659f913aebbe46a2dcc7f9e.tar.gz |
- Fixed CS
-rw-r--r-- | src/interfaces/driver.php | 6 | ||||
-rw-r--r-- | src/tools.php | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/interfaces/driver.php b/src/interfaces/driver.php index ef7f57a..04025ac 100644 --- a/src/interfaces/driver.php +++ b/src/interfaces/driver.php @@ -138,13 +138,13 @@ abstract class ezcGraphDriver // Determine one of the angles - we need to know where the smaller // angle is, to determine if the inner side of the polygon is on // the left or right hand. - // + // // This is a valid simplification for ezcGraph(, for now). - // + // // The sign of the scalar products results indicates on which site // the smaller angle is, when comparing the orthogonale vector of // one of the vectors with the other. Why? .. use pen and paper .. - // + // // It is sufficant to do this once before iterating over the points, // because the inner side of the polygon is on the same side of the // point for each point. diff --git a/src/tools.php b/src/tools.php index 47c53da..a3edeb1 100644 --- a/src/tools.php +++ b/src/tools.php @@ -131,7 +131,7 @@ class ezcGraphTools // Link chart elements foreach ( $elements['data'] as $dataset => $datapoints ) { - foreach( $datapoints as $datapoint => $ids ) + foreach ( $datapoints as $datapoint => $ids ) { $url = $chart->data[$dataset]->url[$datapoint]; |