DrawRectangleRoundedLinesEx method
void
DrawRectangleRoundedLinesEx(
- RectangleD rec,
- num roundness,
- num segments,
- num lineThick,
- ColorD color,
Implementation
void DrawRectangleRoundedLinesEx(
RectangleD rec,
num roundness,
num segments,
num lineThick,
ColorD color,
) => run(
() => 'DrawRectangleRoundedLinesEx($rec, $roundness, $segments, $lineThick, $color)',
() => rl.Core.DrawRectangleRoundedLinesEx(
rl.Temp.Rectangle$.Ref1(rec).ref,
roundness.toDouble(),
segments.toInt(),
lineThick.toDouble(),
rl.Temp.Color$.Ref1(color).ref,
),
);