Source for file ToolAxis.php
Documentation is available at ToolAxis.php
* Description: Base abstract class for Tool components with an Axis method
* @copyright (c) 1995-2008 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);
* Element Pen characteristics.
$tmpColor = new Color(0, 0, 0);
* The axis to which a Tool will belong.<br>
* Sets the axis to which a Tool will belong.<br>
if($this->iAxis != $value)
|