DrawLineEx method

void DrawLineEx(
  1. Vector2C startPos,
  2. Vector2C endPos,
  3. double thick,
  4. ColorC color,
)

Draw a line (using triangles/quads)

Implementation

void DrawLineEx(Vector2C startPos, Vector2C endPos, double thick, ColorC color)
  => _DrawLineEx(startPos, endPos, thick, color);