@aptpod/data-viz-create-visual-parts-react
Version:
template of npm project with typescript
13 lines (12 loc) • 335 B
text/typescript
export const calculateScale = (params: {
originalWidth: number
originalHeight: number
width: number
height: number
}) => {
const { originalWidth, originalHeight, width, height } = params
const scaleX = width / originalWidth
const scaleY = height / originalHeight
const scale = Math.min(scaleX, scaleY)
return scale
}