ImDrawList_AddBezierCubic function

void ImDrawList_AddBezierCubic(
  1. Pointer<ImDrawList> self,
  2. ImVec2 p1,
  3. ImVec2 p2,
  4. ImVec2 p3,
  5. ImVec2 p4,
  6. int col,
  7. double thickness,
  8. int num_segments,
)
void ImDrawList_AddBezierCubic(
 ImDrawList* self ,
 ImVec2 p1 ,
 ImVec2 p2 ,
 ImVec2 p3 ,
 ImVec2 p4 ,
 uint col ,
 float thickness ,
 int num_segments
);

Implementation

void ImDrawList_AddBezierCubic(Pointer<ImDrawList> self, ImVec2 p1, ImVec2 p2,
        ImVec2 p3, ImVec2 p4, int col, double thickness, int num_segments) =>
    _ImDrawList_AddBezierCubic(
        self, p1, p2, p3, p4, col, thickness, num_segments);