Skip to content

Commit

Permalink
add blur option to Julia FX
Browse files Browse the repository at this point in the history
  • Loading branch information
DedeHai committed Oct 5, 2024
1 parent 7adabcc commit b536792
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions wled00/FX.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5356,11 +5356,12 @@ uint16_t mode_2DJulia(void) { // An animated Julia set
}
y += dy;
}
// SEGMENT.blur(64);
if(SEGMENT.check1)
SEGMENT.blur(128, true);

return FRAMETIME;
} // mode_2DJulia()
static const char _data_FX_MODE_2DJULIA[] PROGMEM = "Julia@,Max iterations per pixel,X center,Y center,Area size;!;!;2;ix=24,c1=128,c2=128,c3=16";
static const char _data_FX_MODE_2DJULIA[] PROGMEM = "Julia@,Max iterations per pixel,X center,Y center,Area size, Blur;!;!;2;ix=24,c1=128,c2=128,c3=16";


//////////////////////////////
Expand Down

0 comments on commit b536792

Please sign in to comment.