ImDrawList_PathBezierCubicCurveTo function

void ImDrawList_PathBezierCubicCurveTo(
  1. Pointer<ImDrawList> self,
  2. ImVec2 p2,
  3. ImVec2 p3,
  4. ImVec2 p4,
  5. int num_segments
)
void ImDrawList_PathBezierCubicCurveTo(
 ImDrawList* self ,
 ImVec2 p2 ,
 ImVec2 p3 ,
 ImVec2 p4 ,
 int num_segments
);

Implementation

void ImDrawList_PathBezierCubicCurveTo(Pointer<ImDrawList> self, ImVec2 p2,
        ImVec2 p3, ImVec2 p4, int num_segments) =>
    _ImDrawList_PathBezierCubicCurveTo(self, p2, p3, p4, num_segments);