You are here

function pChart::drawEllipse in Visitors 8

Same name and namespace in other branches
  1. 7.0 pchart/pChart.inc \pChart::drawEllipse()

File

pchart/pChart.inc, line 2301

Class

pChart

Code

function drawEllipse($Xc, $Yc, $Height, $Width, $R, $G, $B) {
  $this
    ->drawCircle($Xc, $Yc, $Height, $R, $G, $B, $Width);
}