Skip to content

Commit 4cf6675

Browse files
authored
Update index.html
1 parent a1b14b0 commit 4cf6675

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,8 +121,8 @@ <h2>📝 Editor</h2>
121121
const min=Math.min, max=Math.max, random=Math.random;
122122
const step = (edge, x) => x >= edge ? 1.0 : 0.0;
123123
const clamp = (v, mn, mx) => Math.max(mn, Math.min(mx, v));
124-
const clip_min = (x) => Math.min(x, 0);
125-
const clip_max = (x) => Math.max(x, 0);
124+
const relumin = (x) => Math.min(x, 0);
125+
const relumax = (x) => Math.max(x, 0);
126126
function gcd(a, b) {
127127
while (b) {
128128
[a, b] = [b, a % b];

0 commit comments

Comments
 (0)