4 lines
123 B
TypeScript
4 lines
123 B
TypeScript
export const computeTurnRate = (speed: number, bank: number) => {
|
|
return (1091 * Math.tan(bank.toRadians())) / speed;
|
|
};
|