ImDrawList_AddLine function

void ImDrawList_AddLine(
  1. Pointer<ImDrawList> self,
  2. ImVec2 p1,
  3. ImVec2 p2,
  4. int col,
  5. double thickness,
)
void ImDrawList_AddLine(
 ImDrawList* self ,
 ImVec2 p1 ,
 ImVec2 p2 ,
 uint col ,
 float thickness
);

Implementation

void ImDrawList_AddLine(Pointer<ImDrawList> self, ImVec2 p1, ImVec2 p2, int col,
        double thickness) =>
    _ImDrawList_AddLine(self, p1, p2, col, thickness);