DrawLineStrip method

void DrawLineStrip(
  1. List<Vector2D> points,
  2. ColorD color
)

Implementation

void DrawLineStrip(
  List<Vector2D> points,
  ColorD color,
) => run(
  () => 'DrawLineStrip(points: ${points.length}, $color)',
  () => rl.Core.DrawLineStrip(
    _refListVector2(points),
    points.length,
    _refColor1(color).ref
  ),
);