예제 #1
0
파일: Point.php 프로젝트: ricberw/BotQueue
 public function __construct($x, $y, $z)
 {
     parent::__construct($x, $y, $z);
     $this->_option = array();
     $this->_lastTransformation = null;
     $this->_screenCoordinates = null;
     $this->_processed = false;
     $this->_colors = array();
     $this->_color = null;
 }
예제 #2
0
파일: Light.php 프로젝트: ricberw/BotQueue
 public function __construct($x, $y, $z)
 {
     parent::__construct($x, $y, $z);
     $this->_color = null;
     $this->_position = null;
 }