mirror of
https://github.com/koush/scrypted.git
synced 2026-02-09 16:52:18 +00: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;
|
|
}
|