mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-01-19 14:57:55 -05:00
Tom git-svn-id: svn+ssh://jekkos@svn.code.sf.net/p/opensourcepos/code/@24 c3eb156b-1dc0-44e1-88ae-e38439141b53
25 lines
316 B
PHP
25 lines
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;
|
|
}
|
|
} |