예제 #1
0
파일: Vector.php 프로젝트: ricberw/BotQueue
 public function sub(Image_3D_Vector $vector)
 {
     $this->_x -= $vector->getX();
     $this->_y -= $vector->getY();
     $this->_z -= $vector->getZ();
     $this->_length = null;
 }