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
Copy file name to clipboardExpand all lines: README.md
+13-11
Original file line number
Diff line number
Diff line change
@@ -1,21 +1,23 @@
1
-
# RgbRandomWalk
2
-
Creates fractal-like images with three 2D random walks in red, green, and blue.
3
-
4
-
The intensity of a pixel is proportional (until it reaches the brightest value) to the number of times it is visited. See [Wikipedia](https://en.wikipedia.org/wiki/Random_walk) for more info on random walks.
5
-
6
-
Made just for fun.
1
+
# Random Walk Wallpaper Generator
2
+
Generate hazy fractal-like wallpaper images by simulating random walks in different colors.
7
3
4
+
The intensity of a pixel corresponds to the number of times it is visited during each random walk. See [Wikipedia](https://en.wikipedia.org/wiki/Random_walk) for more info on random walks.
The `<imagefilepath>` parameter is the filename of the PNG image to output. Output is in PNG format regardless of specified extension. This can be changed in source file. **Note: will overwrite any existing file. Use caution.**
11
13
12
-
`imagefilepath` is the image file to write. Output in in PNG format regardless of specified extension. This can be changed in source file. **Note: will overwrite any existing file. Use caution.**
14
+
`width` and `height` specify the size of image.
13
15
14
-
`width` and `height` are the size of image.
16
+
`steps` specifies the number of steps to take for each random walk.
15
17
16
-
`steps` is the number of steps to take for each random walk.
18
+
The number of random walks and corresponding colors can be changed by editing the RgbRandomWalk.java file.
0 commit comments