ImageDrawLineEx method

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

Implementation

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