DrawRectangleRoundedLinesEx method
void
DrawRectangleRoundedLinesEx(
- RectangleD rec,
- num roundness,
- num segments,
- num lineThick,
- ColorD color,
override
Implementation
@override
void DrawRectangleRoundedLinesEx(
RectangleD rec,
num roundness,
num segments,
num lineThick,
ColorD color,
) => run(
() => RaylibDebugLabels.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,
),
);