DrawLineV method

void DrawLineV(
  1. Vector2D startPos,
  2. Vector2D endPos,
  3. ColorD color
)

Implementation

void DrawLineV(
  Vector2D startPos,
  Vector2D endPos,
  ColorD color,
) => run(
  () => 'DrawLineV($startPos, $endPos, $color)',
  () => rl.Core.DrawLineV(
    _refVector21(startPos).ref,
    _refVector22(endPos).ref,
    _refColor1(color).ref,
  ),
);