ImDrawList_PathArcTo function

void ImDrawList_PathArcTo(
  1. Pointer<ImDrawList> self,
  2. ImVec2 center,
  3. double radius,
  4. double a_min,
  5. double a_max,
  6. int num_segments,
)
void ImDrawList_PathArcTo(
 ImDrawList* self ,
 ImVec2 center ,
 float radius ,
 float a_min ,
 float a_max ,
 int num_segments
);

Implementation

void ImDrawList_PathArcTo(Pointer<ImDrawList> self, ImVec2 center,
        double radius, double a_min, double a_max, int num_segments) =>
    _ImDrawList_PathArcTo(self, center, radius, a_min, a_max, num_segments);