drawPolyLinesEx function

void drawPolyLinesEx(
  1. Vector2 center,
  2. int sides,
  3. double radius,
  4. double rotation,
  5. double lineThick,
  6. Color color,
)

Draw a polygon outline of n sides with extended parameters.

Implementation

void drawPolyLinesEx(
  Vector2 center,
  int sides,
  double radius,
  double rotation,
  double lineThick,
  Color color,
) {
  return library.DrawPolyLinesEx(
    center.ref,
    sides,
    radius,
    rotation,
    lineThick,
    color.ref,
  );
}