DrawEllipse method
void
DrawEllipse()
override
Implementation
@override
void DrawEllipse(
num centerX,
num centerY,
num radiusH,
num radiusV,
ColorD color,
) => run(
() => RaylibDebugLabels.DrawEllipse(centerX, centerY, radiusH, radiusV, color),
() => rl.Core.DrawEllipse(
centerX.toInt(),
centerY.toInt(),
radiusH.toDouble(),
radiusV.toDouble(),
rl.Temp.Color$.Ref1(color).ref,
),
);