🔃 geometry.ts

This commit is contained in:
nirholas
2026-03-31 10:23:40 +00:00
parent 10beb864ae
commit a4f01f2e3c

View File

@@ -95,3 +95,4 @@ export function clamp(value: number, min?: number, max?: number): number {
if (max !== undefined && value > max) return max
return value
}