ImageDrawLineV method
Implementation
void ImageDrawLineV(
ImageD dst,
Vector2D start,
Vector2D end,
ColorD color,
) => run(
() => 'ImageDrawLineV($dst, $start, $end, $color)',
() => _refUpdateImage(dst,
(p) => rl.Core.ImageDrawLineV(
p,
_refVector21(start).ref,
_refVector22(end).ref,
_refColor1(color).ref,
),
),
);