engine-psx/tools/convrsd/fixedpoint.py
2024-09-21 01:29:54 -03:00

6 lines
151 B
Python

def tofixed(value: float, scale: int) -> int:
return int(value * (1 << scale))
def tofixed12(value: float) -> int:
return tofixed(value, 12)