Fr: @phiidev-fr.bsky.social
Es: @phiidev-es.bsky.social
she/her they/them vi/vim
std::cout << x << ", " << ceil(x) << std::endl;
...which outputted...
7, 8
...and it took me running...
std::cout << *(int*)&x << std::endl;
...to find that x was 0.000000476837158203125 off from 7, and hence rounding up.
std::cout << x << ", " << ceil(x) << std::endl;
...which outputted...
7, 8
...and it took me running...
std::cout << *(int*)&x << std::endl;
...to find that x was 0.000000476837158203125 off from 7, and hence rounding up.
Each quad is moving on a sine wave, with the frequency increasing from right to left.
Each quad is moving on a sine wave, with the frequency increasing from right to left.