DrawCircle method

  1. @override
void DrawCircle(
  1. num centerX,
  2. num centerY,
  3. num radius,
  4. ColorD color,
)
override

Implementation

@override
void DrawCircle(
  num centerX,
  num centerY,
  num radius,
  ColorD color,
) => run(
  () => RaylibDebugLabels.DrawCircle(centerX, centerY, radius, color),
  () => rl.Core.DrawCircle(
    centerX.toInt(),
    centerY.toInt(),
    radius.toDouble(),
    rl.Temp.Color$.Ref1(color).ref,
  ),
);