//////////////////GET///////////////////////////
function getColor(){return $this->color;}
function getAltura(){return $this->altura;}
function getEdad(){return $this->edad;}
function getEstado(){return $this->estado;}
function getDireccion(){return $this->direccion;}
function getTel(){return $this->tel;}
/////////////////SET/////////////////////////
function setColor($valor){ $this->color=$valor;}
function setAltura($valor){$this->altura=$valor;}
function setEdad($valor){$this->edad=$valor;}
function setEstado($valor){$this->estado=$valor;}
function setDireccion($valor){$this->direccion=$valor;}
function setTel($valor){$this->tel=$valor;}
function persona($c,$a,$e,$es,$d,$t){//constructor de la clase
$this->color=$c;
$this->altura=$a;
$this->edad=$e;
$this->estado=$es;
$this->direccion=$d;
$this->tel=$t;
}