| 10346 | } |
| 10347 | |
| 10348 | ImGuiDir 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 | |
| 10355 | static float inline NavScoreItemDistInterval(float a0, float a1, float b0, float b1) |
| 10356 | { |