MCPcopy Create free account
hub / github.com/KebsCS/KBotExt / AddTriangleFilled

Method AddTriangleFilled

KBotExt/imgui/imgui_draw.cpp:1467–1476  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1465}
1466
1467void ImDrawList::AddTriangleFilled(const ImVec2& p1, const ImVec2& p2, const ImVec2& p3, ImU32 col)
1468{
1469 if ((col & IM_COL32_A_MASK) == 0)
1470 return;
1471
1472 PathLineTo(p1);
1473 PathLineTo(p2);
1474 PathLineTo(p3);
1475 PathFillConvex(col);
1476}
1477
1478void ImDrawList::AddCircle(const ImVec2& center, float radius, ImU32 col, int num_segments, float thickness)
1479{

Callers 2

RenderArrowMethod · 0.80
RenderArrowPointingAtMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected