DrawPixelV method

void DrawPixelV(
  1. Vector2D position,
  2. ColorD color
)

Draw a pixel using geometry (Vector version) Can be slow, use with care

Implementation

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