ImageDrawLineEx method

void ImageDrawLineEx(
  1. Pointer<ImageC> dst,
  2. Vector2C start,
  3. Vector2C end,
  4. int thick,
  5. ColorC color,
)

Draw a line defining thickness within an image

Implementation

void ImageDrawLineEx(Pointer<ImageC> dst, Vector2C start, Vector2C end, int thick, ColorC color)
  => _ImageDrawLineEx(dst, start, end, thick, color);