diff options
author | Kore Nordmann <github@kore-nordmann.de> | 2006-07-11 08:49:26 +0000 |
---|---|---|
committer | Kore Nordmann <github@kore-nordmann.de> | 2006-07-11 08:49:26 +0000 |
commit | 6f359d97e38932b0da23abb0940f32bf5380c0d8 (patch) | |
tree | bc6221534bf65aa6777245e7f555e943cdd2bbc6 /src/structs | |
parent | 663493a7224dc7869c6c63d770016f9fd8850e2a (diff) | |
download | zetacomponents-graph-6f359d97e38932b0da23abb0940f32bf5380c0d8.zip zetacomponents-graph-6f359d97e38932b0da23abb0940f32bf5380c0d8.tar.gz |
- Refactored ezcGraphRenderer
# Most test run again, but complete result is still errnous
Diffstat (limited to 'src/structs')
-rw-r--r-- | src/structs/boundings.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/structs/boundings.php b/src/structs/boundings.php index 003c72e..10a2e94 100644 --- a/src/structs/boundings.php +++ b/src/structs/boundings.php @@ -13,8 +13,12 @@ class ezcGraphBoundings /** * Empty constructor */ - public function __construct() + public function __construct( $x0 = 0, $y0 = 0, $x1 = false, $y1 = false ) { + $this->x0 = $x0; + $this->y0 = $y0; + $this->x1 = $x1; + $this->y1 = $y1; } /** |