Example #1
0
 protected function drawCircle(GraphicsContext $gc, $radius, $x, $y, $drawType)
 {
     $size = $radius * 2;
     $gc->drawEllipse($x, $y, $size, $size, $drawType);
 }