ImDrawList_PathArcToFast function

void ImDrawList_PathArcToFast(
  1. Pointer<ImDrawList> self,
  2. ImVec2 center,
  3. double radius,
  4. int a_min_of_12,
  5. int a_max_of_12,
)
void ImDrawList_PathArcToFast(
 ImDrawList* self ,
 ImVec2 center ,
 float radius ,
 int a_min_of_12 ,
 int a_max_of_12
);

Implementation

void ImDrawList_PathArcToFast(Pointer<ImDrawList> self, ImVec2 center,
        double radius, int a_min_of_12, int a_max_of_12) =>
    _ImDrawList_PathArcToFast(self, center, radius, a_min_of_12, a_max_of_12);