DrawRectangleRoundedLinesEx method

void DrawRectangleRoundedLinesEx(
  1. RectangleD rec,
  2. num roundness,
  3. num segments,
  4. num lineThick,
  5. 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,
  ),
);