Example #1
0
 /**
  * Create an radial pointing marker, ie a marker on a defined distance from
  * the data
  * @param int $radius The 'length' of the pointer
  * @param Marker $markerEnd The ending marker that represents 'the head of
  * the pin'
  */
 function Image_Graph_Marker_Pointing_Radial($radius, &$markerEnd)
 {
     parent::__construct(0, 0, $markerEnd);
     $this->_radius = $radius;
 }
Example #2
0
 /**
  * Image_Graph_AngularPointingMarker [Constructor]
  * @param int $radius The 'length' of the pointer
  * @param Marker $markerEnd The ending marker that represents 'the head of
  * the pin'
  */
 function __construct($radius, &$markerEnd)
 {
     parent::__construct(0, 0, $markerEnd);
     $this->_radius = $radius;
 }