You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
for (size_t j = 0; j<height; j++) { // actual rendering loop
Hi @ssloy, first of all, thanks for these amazing courses. Loved them.
Just wanted to point out that usage of "size_t", which is actually an 'unsigned int', never lets the direction in -ve x or -ve y axis which in result shows circle in 1st quadrant only.
Solution: Use "int" for "for" loop variables 'i' and 'j'.
Thanks again.
The text was updated successfully, but these errors were encountered:
tinykaboom/tinykaboom.cpp
Line 33 in c45987e
Hi @ssloy, first of all, thanks for these amazing courses. Loved them.
Just wanted to point out that usage of "size_t", which is actually an 'unsigned int', never lets the direction in -ve x or -ve y axis which in result shows circle in 1st quadrant only.
Solution: Use "int" for "for" loop variables 'i' and 'j'.
Thanks again.
The text was updated successfully, but these errors were encountered: