Source for file Point3D.php
Documentation is available at Point3D.php
* Description: XYZ Point holder
* @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);
public function Point3D($x= 0, $y= 0, $z= 0) {
* The X location in pixels.
* Sets the X location in pixels.
public function setX($value) {
* The Y location in pixels.
* Sets the Y location in pixels.
public function setY($value) {
* The Z location in pixels.
* Sets the Z location in pixels.
public function setZ($value) {
|