| 216 | } |
| 217 | |
| 218 | Vector2 ConvertNDCTo2DPosition(const Vector2& ndc) |
| 219 | { |
| 220 | return Vector2( |
| 221 | ((ndc.x + 1.0f) * DISPLAY_SPACE_RES.x) / 2, |
| 222 | ((1.0f - ndc.y) * DISPLAY_SPACE_RES.y) / 2); |
| 223 | } |
| 224 | |
| 225 | std::wstring GetBinaryPath(bool includeExeName) |
| 226 | { |
no test coverage detected