This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
: legend | |
." Escape or Q to quit" cr | |
." Z to paint" cr | |
." L to load from a file" cr | |
." S to save to a file" cr | |
." P to see the text" cr | |
." R to enter the text" cr | |
." B to see in braille" cr | |
." Delete to clear" cr ; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
011 REM MANDELBROT SET | |
012 REM BY ORIGEDIT | |
013 REM 22.09.2024 | |
014 REM | |
015 REM F = Z^2 + C | |
016 REM | |
017 REM VARIABLES | |
018 REM H1, H2 - START AND END X | |
019 REM V1, V2 - START AND END Y | |
020 REM S - STEP FOR X1 AND Y1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let spread=50 | |
let dots={} | |
const palette=[ | |
"#583725", | |
"#b4785e", | |
"#f06128", | |
"#f8d81d", | |
"#e6ff8a", | |
"#92d425", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdlib.h> | |
#include <stdio.h> | |
size_t width, height; | |
char *grid1, *grid2, *oldg, *newg; | |
unsigned seed; | |
void shuffle() | |
{ | |
size_t i, n; |