DrawPolyLines method

void DrawPolyLines(
  1. Vector2D center,
  2. num sides,
  3. num radius,
  4. num rotation,
  5. ColorD color,
)

Implementation

void DrawPolyLines(
  Vector2D center,
  num sides,
  num radius,
  num rotation,
  ColorD color,
) => run(
  () => 'DrawPolyLines($center, $sides, $radius, $rotation, $color)',
  () => rl.Core.DrawPolyLines(
    _refVector21(center).ref,
    sides.toInt(),
    radius.toDouble(),
    rotation.toDouble(),
    _refColor1(color).ref,
  ),
);