ImageDrawLineV method

void ImageDrawLineV(
  1. ImageD dst,
  2. Vector2D start,
  3. Vector2D end,
  4. ColorD color,
)

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,
    ),
  ),
);