DrawCircleV method
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,
),
);