TIL Rectangles can twirl.

( x | y ) - ( x | 2y )

#mastodon #FractalFriday

@noneuclideandreamer played with this equation a bit, found this

( x ^ y ) & ( x ^ (2*y) ) % 9 == 0

@noneuclideandreamer
the "&" and "%" is not working as intended, another parenthesis changes the image
@noneuclideandreamer
symmetry
(( (2*x) ^ y ) & ( x ^ (2*y) )) % 9
@noneuclideandreamer
last one
(( (2*x) ^ y )%9) & (( x ^ (2*y) ) % 9)
@conchoid Oh yeah that confused me too...