|
|
|
|
|
by ux
268 days ago
|
|
This is not equivalent; the `a` in `c.r+=w*a` is different, you need the original untouched w. The mountain looses its crack with your version. But! You can save 1 char by replacing w with a: g -= a*=w,
c += a*d*9.+...
a = min(...),
c.r += w*a*a*.2,
So thank you for the idea! |
|