DrawLineEx method
Draw a line (using triangles/quads)
Implementation
void DrawLineEx(
Vector2D startPos,
Vector2D endPos,
num thick,
ColorD color,
) => run(
() => _debugLabels.DrawLineEx(startPos, endPos, thick, color),
() => _flat.DrawLineEx(
startPos,
endPos,
thick.toDouble(),
color,
),
);