Hot fix for runtime error. To be properly fixed.

Original commit: 5af876f361
This commit is contained in:
Wojciech Daniło 2020-06-19 02:29:49 +02:00 committed by GitHub
parent f6f99934b4
commit 0651c2458f

View File

@ -140,7 +140,7 @@ BoundSdf pixel_snap (BoundSdf a) {
BoundSdf grow (BoundSdf a, float size) {
a.distance = a.distance - size;
a.bounds = grow(a.bounds,size);
// a.bounds = grow(a.bounds,size);
return a;
}