Axis::Unit PHP Method

Unit() public method

Returns the size of a unit in grid space
public Unit ( )
    public function Unit()
    {
        if (!isset($this->unit_size)) {
            $this->Grid(1);
        }
        return $this->unit_size;
    }