453 {
455
457
458 for (int i = 0; i < led_column_table_length; ++i) {
460
461 const int pixel_count = led_column_table[i];
463
464 const int black_pixel_count = pixel_count - draw_pixel_count;
465
466
467 if (i % 2 == 0) {
468 for (int j = 0; j < black_pixel_count; ++j) {
470 }
471 for (int j = 0; j < draw_pixel_count; ++j) {
473 }
474 } else {
475
476 for (int j = 0; j < draw_pixel_count; ++j) {
478 }
479
480 for (int j = 0; j < black_pixel_count; ++j) {
482 }
483 }
484 }
486}
LedRopeTCL led_rope(kNumKeys)
void RawDrawPixel(const Color3i &c)
Color3i * GetIterator(int i)
constexpr enable_if< is_fixed_point< T >::value, T >::type ceil(T x) FL_NOEXCEPT
constexpr enable_if< is_fixed_point< T >::value, T >::type sqrt(T x) FL_NOEXCEPT