DrawPolyLinesEx method
void
DrawPolyLinesEx()
Draw a polygon outline of n sides with extended parameters
Implementation
void DrawPolyLinesEx(
Vector2D center,
num sides,
num radius,
num rotation,
num lineThick,
ColorD color,
) => run(
() => _debugLabels.DrawPolyLinesEx(center, sides, radius, rotation, lineThick, color),
() => _flat.DrawPolyLinesEx(
center,
sides.toInt(),
radius.toDouble(),
rotation.toDouble(),
lineThick.toDouble(),
color,
),
);