17 lines
187 B
PHP
17 lines
187 B
PHP
<?php
|
|
|
|
class Point {
|
|
var $x;
|
|
var $y;
|
|
|
|
function Point($x, $y) {
|
|
$this->x = $x;
|
|
$this->y = $y;
|
|
}
|
|
|
|
function _clone() {
|
|
return new Point($this->x, $this->y);
|
|
}
|
|
}
|
|
|
|
?>
|