{} or {} restriction

I’m making an art piece, and i know how to use use restrictions, but i was wondering if there’s a way to make 2 restrictions but only 1 of them required.
Like, {abs(x)<10} or {y<0}.
Thanks!

This would be for “or” conditionals.

{abs(x)<10,y<0}

This would be for “and” conditionals.

{abs(x)<10{y<0}}
4 Likes

Wait, holdup. You can do ands and ors like that?? How did I not know this?

1 Like