DrawLineV method

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

Implementation

@override
void DrawLineV(
  Vector2D startPos,
  Vector2D endPos,
  ColorD color,
) => run(
  () => RaylibDebugLabels.DrawLineV(startPos, endPos, color),
  () => rl.Core.DrawLineV(
    rl.Temp.Vector2$.Ref1(startPos).ref,
    rl.Temp.Vector2$.Ref2(endPos).ref,
    rl.Temp.Color$.Ref1(color).ref,
  ),
);