MCPcopy Create free account
hub / github.com/RenderKit/embree / ImGetDirQuadrantFromDelta

Function ImGetDirQuadrantFromDelta

tutorials/common/imgui/imgui.cpp:10348–10353  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

10346}
10347
10348ImGuiDir ImGetDirQuadrantFromDelta(float dx, float dy)
10349{
10350 if (ImFabs(dx) > ImFabs(dy))
10351 return (dx > 0.0f) ? ImGuiDir_Right : ImGuiDir_Left;
10352 return (dy > 0.0f) ? ImGuiDir_Down : ImGuiDir_Up;
10353}
10354
10355static float inline NavScoreItemDistInterval(float a0, float a1, float b0, float b1)
10356{

Callers 1

NavScoreItemMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected