This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import math | |
| from os import path, getenv | |
| import re | |
| def mc_effective_sens(sens): | |
| return math.pow(sens * 0.6 + 0.2, 3) * 8.0 | |
| def visible_VFOV(v_deg, display_height, fb_height): | |
| k = display_height / fb_height |