DrawCircleV method

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

Draw a color-filled circle (Vector version)

Implementation

void DrawCircleV(
  Vector2D center,
  num radius,
  ColorD color,
) => run(
  () => _debugLabels.DrawCircleV(center, radius, color),
  () => _flat.DrawCircleV(
    center,
    radius.toDouble(),
    color,
  ),
);