| 9060 | } |
| 9061 | |
| 9062 | ImGuiDir 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 | |
| 9069 | static float inline NavScoreItemDistInterval(float a0, float a1, float b0, float b1) |
| 9070 | { |