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
In both the DrawFanPixels and DrawPixels functions in the ledgfx.h and previous examples in the main.cpp, the test for the middle pixel, which reads
while (remaining > 1.0f) {
This will skip over drawing the middle pixel if remaining = 1.0f. This means the third pixel will get the full intensity pixel instead of the second/middle pixel. I believe it should read
while (remaining >= 1.0f) {
The text was updated successfully, but these errors were encountered:
In both the DrawFanPixels and DrawPixels functions in the ledgfx.h and previous examples in the main.cpp, the test for the middle pixel, which reads
while (remaining > 1.0f) {
This will skip over drawing the middle pixel if remaining = 1.0f. This means the third pixel will get the full intensity pixel instead of the second/middle pixel. I believe it should read
while (remaining >= 1.0f) {
The text was updated successfully, but these errors were encountered: