コード例 #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;
 }