DrawEllipse method
Implementation
void DrawEllipse(
num centerX,
num centerY,
num radiusH,
num radiusV,
ColorD color,
) => run(
() => 'DrawEllipse($centerX, $centerY, $radiusH, $radiusV, $color)',
() => rl.Core.DrawEllipse(
centerX.toInt(),
centerY.toInt(),
radiusH.toDouble(),
radiusV.toDouble(),
_refColor1(color).ref,
),
);