phplibrary/core/geometry/point.php
2016-06-29 18:51:32 +03:00

13 lines
No EOL
166 B
PHP

<?php
class Point
{
public $left, $top;
function __construct ($left = 0, $top = 0)
{
$this->left = $left;
$this->top = $top;
}
}
?>