コード例 #1
0
ファイル: DrawLine.php プロジェクト: BGCX262/zym-svn-to-git
 /**
  * Parse the inital options for the line
  *
  * @param  array $options An array with the options of the line
  */
 public function __construct($options = array())
 {
     $this->_pointStart = new Zend_Image_Point();
     $this->_pointEnd = new Zend_Image_Point();
     return parent::__construct($options);
 }
コード例 #2
0
 /**
  * Parse the inital options for the ellipse
  *
  * @param  array $options An array with the options of the ellipse
  */
 public function __construct($options = array())
 {
     $this->_location = new Zend_Image_Point();
     return parent::__construct($options);
 }