DrawPolyLinesEx method

  1. @override
void DrawPolyLinesEx(
  1. Vector2D center,
  2. int sides,
  3. double radius,
  4. double rotation,
  5. double lineThick,
  6. ColorD color,
)
override

Draw a polygon outline of n sides with extended parameters

Implementation

@override
void DrawPolyLinesEx(
  Vector2D center,
  int sides,
  double radius,
  double rotation,
  double lineThick,
  ColorD color,
) => _ffi.DrawPolyLinesEx(
  $.Vector2$.Ref1(center).asNativePointer<Vector2C>().ref,
  sides,
  radius,
  rotation,
  lineThick,
  $.Color$.Ref1(color).asNativePointer<ColorC>().ref,
);