Files
luos/thirdparty/html2ps_pdf/path.point.php
Paula Quispe 9eb7d6cac2 HOR-2689
2017-08-03 17:00:30 -04:00

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