Added a graphing functionality with Open Flash Chart, and added ability to graph...
[openemr.git] / library / openflashchart / php-ofc-library / ofc_shape.php
blob0cfe39f9bc4f173b8b15bd610d133d951edadfc0
1 <?php
3 class shape_point
5 function shape_point( $x, $y )
7 $this->x = $x;
8 $this->y = $y;
12 class shape
14 function shape( $colour )
16 $this->type = "shape";
17 $this->colour = $colour;
18 $this->values = array();
21 function append_value( $p )
23 $this->values[] = $p;