DrawRectangleV method

void DrawRectangleV(
  1. Vector2D position,
  2. Vector2D size,
  3. ColorD color
)

Draw a color-filled rectangle (Vector version)

Implementation

void DrawRectangleV(
  Vector2D position,
  Vector2D size,
  ColorD color,
) => run(
  () => _debugLabels.DrawRectangleV(position, size, color),
  () => _flat.DrawRectangleV(
    position,
    size,
    color,
  ),
);