Files
luos/gulliver/thirdparty/html2ps_pdf/path.point.php

17 lines
187 B
PHP
Executable File

<?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);
}
}
?>