MCPcopy Create free account
hub / github.com/DISTRHO/Cardinal / ImGetDirQuadrantFromDelta

Function ImGetDirQuadrantFromDelta

plugins/Cardinal/src/DearImGui/imgui.cpp:9062–9067  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

9060}
9061
9062ImGuiDir ImGetDirQuadrantFromDelta(float dx, float dy)
9063{
9064 if (ImFabs(dx) > ImFabs(dy))
9065 return (dx > 0.0f) ? ImGuiDir_Right : ImGuiDir_Left;
9066 return (dy > 0.0f) ? ImGuiDir_Down : ImGuiDir_Up;
9067}
9068
9069static float inline NavScoreItemDistInterval(float a0, float a1, float b0, float b1)
9070{

Callers 1

NavScoreItemMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected