ImDrawList__PathArcToN function

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

Implementation

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