From a9aa438ea0558eb0044cf1e54a9190ddb41b65e5 Mon Sep 17 00:00:00 2001 From: cassio Date: Tue, 2 Jul 2013 09:44:46 +0400 Subject: restructuring of boca's git --- boca-1.5.2/src/libchart/classes/Point.php | 83 ------------------------------- 1 file changed, 83 deletions(-) delete mode 100644 boca-1.5.2/src/libchart/classes/Point.php (limited to 'boca-1.5.2/src/libchart/classes/Point.php') diff --git a/boca-1.5.2/src/libchart/classes/Point.php b/boca-1.5.2/src/libchart/classes/Point.php deleted file mode 100644 index 5c0d9ec..0000000 --- a/boca-1.5.2/src/libchart/classes/Point.php +++ /dev/null @@ -1,83 +0,0 @@ -x = $x; - $this->y = $y; - if($c != null) { - list($r,$g,$b) = $c; - $this->color = new Color($r,$g,$b); - $shadowFactor = 0.5; - $this->shadowColor = new Color($r * $shadowFactor, - $g * $shadowFactor, - $b * $shadowFactor); - } else { - $this->color = null; - $this->shadowColor = null; - } - } - - /** - * Gets the x coordinate (label) - * - * @access public - * @return integer x coordinate (label) - */ - - function getX() - { - return $this->x; - } - - /** - * Gets the y coordinate (value) - * - * @access public - * @return integer y coordinate (value) - */ - - function getY() - { - return $this->y; - } - - function getColor() { return $this->color; } - function getShadowColor() { return $this->shadowColor; } - } -?> -- cgit v1.2.3