DrawCircleLinesV function

void DrawCircleLinesV(
  1. Vector2 center,
  2. double radius,
  3. Color color
)

Implementation

void DrawCircleLinesV(Vector2 center, double radius, Color color) => ffi.using(
  (arena) =>
      raylib.DrawCircleLinesV(arena.vector2(center).ref, radius, color.ptr.ref),
);