MCPcopy Create free account
hub / github.com/Wemino/MarkerPatch / AddTriangleFilled

Method AddTriangleFilled

include/imgui/imgui_draw.cpp:1591–1600  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1589}
1590
1591void ImDrawList::AddTriangleFilled(const ImVec2& p1, const ImVec2& p2, const ImVec2& p3, ImU32 col)
1592{
1593 if ((col & IM_COL32_A_MASK) == 0)
1594 return;
1595
1596 PathLineTo(p1);
1597 PathLineTo(p2);
1598 PathLineTo(p3);
1599 PathFillConvex(col);
1600}
1601
1602void ImDrawList::AddCircle(const ImVec2& center, float radius, ImU32 col, int num_segments, float thickness)
1603{

Callers 2

RenderArrowMethod · 0.80
RenderArrowPointingAtMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected