Source for file TeePoint.php
Documentation is available at TeePoint.php
* @copyright (c) 1995-2010 by Steema Software SL. All Rights Reserved. <info@steema.com>
* @link http://www.steema.com
function __get( $property ) {
$method = "get{$property}";
function __set ( $property,$value ) {
$method = "set{$property}";
return $this->$method($value);
* Creates a new point of coordinates (x, y)
* @param integer x coordinate
* @param integer y coordinate
* @return integer x coordinate
* @return integer x coordinate
public function setX($value) {
* @return integer y coordinate
* @return integer y coordinate
public function setY($value) {
|