DrawPolyLines method
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,
),
);