Exemplo n.º 1
0
 public function equals(Neuron_GameServer_Map_Vector3 $location)
 {
     return $this->x() == $location->x() && $this->y() == $location->y() && $this->z() == $location->z();
 }
Exemplo n.º 2
0
 /**
  * Set "UP" vector that will be interpolated
  */
 public function setUp(Neuron_GameServer_Map_Vector3 $start, Neuron_GameServer_Map_Vector3 $end)
 {
     $this->startUp = $start->normalize();
     $this->endUp = $end->normalize();
 }