ImDrawList_AddCircleFilled function

void ImDrawList_AddCircleFilled(
  1. Pointer<ImDrawList> self,
  2. ImVec2 center,
  3. double radius,
  4. int col,
  5. int num_segments,
)
void ImDrawList_AddCircleFilled(
 ImDrawList* self ,
 ImVec2 center ,
 float radius ,
 uint col ,
 int num_segments
);

Implementation

void ImDrawList_AddCircleFilled(Pointer<ImDrawList> self, ImVec2 center,
        double radius, int col, int num_segments) =>
    _ImDrawList_AddCircleFilled(self, center, radius, col, num_segments);