MCPcopy Create free account
hub / github.com/XJTU-Graphics/dandelion / PathArcToFast

Method PathArcToFast

deps/imgui/imgui_draw.cpp:1252–1260  ·  view source on GitHub ↗

0: East, 3: South, 6: West, 9: North, 12: East

Source from the content-addressed store, hash-verified

1250
1251// 0: East, 3: South, 6: West, 9: North, 12: East
1252void ImDrawList::PathArcToFast(const ImVec2& center, float radius, int a_min_of_12, int a_max_of_12)
1253{
1254 if (radius < 0.5f)
1255 {
1256 _Path.push_back(center);
1257 return;
1258 }
1259 _PathArcToFastEx(center, radius, a_min_of_12 * IM_DRAWLIST_ARCFAST_SAMPLE_MAX / 12, a_max_of_12 * IM_DRAWLIST_ARCFAST_SAMPLE_MAX / 12, 0);
1260}
1261
1262void ImDrawList::PathArcTo(const ImVec2& center, float radius, float a_min, float a_max, int num_segments)
1263{

Callers 5

TabItemExMethod · 0.80
TabItemBackgroundMethod · 0.80

Calls 1

push_backMethod · 0.45

Tested by

no test coverage detected