12 lines
173 B
PHP
12 lines
173 B
PHP
<?php
|
|
|
|
class Geometry_Point
|
|
{
|
|
public $left, $top;
|
|
function __construct ($left = 0, $top = 0)
|
|
{
|
|
$this->left = $left;
|
|
$this->top = $top;
|
|
}
|
|
}
|
|
|