Files
papercrate/frontend/src/desktop/math.ts
T
2025-11-13 01:07:55 +01:00

9 lines
214 B
TypeScript

export { clamp } from '../utils/math';
export const formatTransform = (
x: number,
y: number,
rotation = 0,
scale = 1,
): string => `translate3d(${x}px, ${y}px, 0) rotate(${rotation}deg) scale(${scale})`;