DrawCircleV method

void DrawCircleV(
  1. Vector2D center,
  2. num radius,
  3. ColorD color
)

Implementation

void DrawCircleV(
  Vector2D center,
  num radius,
  ColorD color,
) => run(
  () => 'DrawCircleV($center, $radius, $color)',
  () => rl.Core.DrawCircleV(
    _refVector21(center).ref,
    radius.toDouble(),
    _refColor1(color).ref,
  ),
);