ImDrawList_AddTriangle function

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

Implementation

void ImDrawList_AddTriangle(Pointer<ImDrawList> self, ImVec2 p1, ImVec2 p2,
        ImVec2 p3, int col, double thickness) =>
    _ImDrawList_AddTriangle(self, p1, p2, p3, col, thickness);