DrawRectangleLinesEx method

void DrawRectangleLinesEx(
  1. RectangleD rec,
  2. num lineThick,
  3. ColorD color
)

Draw rectangle outline with extended parameters

Implementation

void DrawRectangleLinesEx(
  RectangleD rec,
  num lineThick,
  ColorD color,
) => run(
  () => _debugLabels.DrawRectangleLinesEx(rec, lineThick, color),
  () => _flat.DrawRectangleLinesEx(
    rec,
    lineThick.toDouble(),
    color,
  ),
);