rename skeuo to desktop

This commit is contained in:
2025-10-28 10:41:56 +01:00
parent 94578475ea
commit e150b81190
8 changed files with 1093 additions and 686 deletions
+8
View File
@@ -0,0 +1,8 @@
export const clamp = (value, min, max) => {
if (value < min) return min;
if (value > max) return max;
return value;
};
export const formatTransform = (x, y, rotation = 0, scale = 1) =>
`translate3d(${x}px, ${y}px, 0) rotate(${rotation}deg) scale(${scale})`;