コード例 #1
0
ファイル: Circle.php プロジェクト: valentijnvenus/geocloud
 /**
  * Image_Graph_Circle [Constructor]
  *
  * @param int $x The center pixel of the circle on the canvas
  * @param int $y The center pixel of the circle on the canvas
  * @param int $radius The radius in pixels of the circle
  */
 function Image_Graph_Figure_Circle($x, $y, $radius)
 {
     parent::Image_Graph_Ellipse($x, $y, $radius, $radius);
 }
コード例 #2
0
ファイル: Circle.php プロジェクト: casati-dolibarr/corebos
 /**
  * Image_Graph_Circle [Constructor]
  *
  * @param int $x      The center pixel of the circle on the canvas
  * @param int $y      The center pixel of the circle on the canvas
  * @param int $radius The radius in pixels of the circle
  */
 function Image_Graph_Figure_Circle($x, $y, $radius)
 {
     parent::__construct($x, $y, $radius, $radius);
 }
コード例 #3
0
ファイル: Circle.php プロジェクト: hostinger/revive-adserver
 /**
  * Image_Graph_Circle [Constructor]
  *
  * @param int $x The center pixel of the circle on the canvas
  * @param int $y The center pixel of the circle on the canvas
  * @param int $radius The radius in pixels of the circle
  */
 function __construct($x, $y, $radius)
 {
     parent::__construct($x, $y, $radius, $radius);
 }