DrawRectangleRoundedLines method

void DrawRectangleRoundedLines(
  1. RectangleD rec,
  2. num roundness,
  3. num segments,
  4. ColorD color,
)

Implementation

void DrawRectangleRoundedLines(
  RectangleD rec,
  num roundness,
  num segments,
  ColorD color,
) => run(
  () => 'DrawRectangleRoundedLines($rec, $roundness, $segments, $color)',
  () => rl.Core.DrawRectangleRoundedLines(
    _refRectangle1(rec).ref,
    roundness.toDouble(),
    segments.toInt(),
    _refColor1(color).ref,
  ),
);