mirror of
https://github.com/koush/scrypted.git
synced 2026-04-11 19:10:21 +01:00
5 lines
191 B
TypeScript
5 lines
191 B
TypeScript
export function fitHeightToWidth(actualWidth: number, actualHeight: number, requestedWidth: number) {
|
|
const h = Math.round((actualHeight / actualWidth) * requestedWidth);
|
|
return h;
|
|
}
|