DrawRectangleRoundedLinesEx method
void
DrawRectangleRoundedLinesEx(
- RectangleD rec,
- double roundness,
- int segments,
- double lineThick,
- ColorD color,
override
Draw rectangle with rounded edges outline
Implementation
@override
void DrawRectangleRoundedLinesEx(
RectangleD rec,
double roundness,
int segments,
double lineThick,
ColorD color,
) => _ffi.DrawRectangleRoundedLinesEx(
$.Rectangle$.Ref1(rec).asNativePointer<RectangleC>().ref,
roundness,
segments,
lineThick,
$.Color$.Ref1(color).asNativePointer<ColorC>().ref,
);