clipbucket/upload/admin_area/charts/ofc-library/ofc_shape.php
Arslan Hassan 97139970d2 ADDED : Website Reports and stats
FIXED : Last Month Date Fixed
2010-01-23 13:16:19 +00:00

25 lines
No EOL
316 B
PHP

<?php
class shape_point
{
function shape_point( $x, $y )
{
$this->x = $x;
$this->y = $y;
}
}
class shape
{
function shape( $colour )
{
$this->type = "shape";
$this->colour = $colour;
$this->values = array();
}
function append_value( $p )
{
$this->values[] = $p;
}
}