ImageDrawLineEx method
Implementation
void ImageDrawLineEx(
ImageD dst,
Vector2D start,
Vector2D end,
num thick,
ColorD color,
) => run(
() => 'ImageDrawLineEx($dst, $start, $end, $thick, $color)',
() => rl.Temp.Image$.RefUpdate1(dst,
(p) => rl.Core.ImageDrawLineEx(
p,
rl.Temp.Vector2$.Ref1(start).ref,
rl.Temp.Vector2$.Ref2(end).ref,
thick.toInt(),
rl.Temp.Color$.Ref1(color).ref,
),
),
);