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
+4
Original file line number
Diff line number
Diff line change
@@ -8,6 +8,10 @@ This is an HTML5 app for creating Perlin noise images.
8
8
9
9
I created this as a means to provide more user control over generating Perlin noise than is typically found in most image editing software packages (such as Photoshop's Render Clouds feature). Perlin noise can also be used as a basis for textures in video games.
10
10
11
+
## Running
12
+
13
+
[Click here to run the app from your browser.](http://htmlpreview.github.io/?https://github.com/blackears/PerlinNoiseMaker/blob/master/index.html)
14
+
11
15
## License
12
16
13
17
This software is licensed under Apache 2. Images generated by this app are copyright of the user who generated them.
<p>Adjust the values below to change the proerties of the image.</p>
101
+
<p>To save the image, click on the <i>Download Image</i> link below. Alternately, you can right click the image and use your web browser's menu to save it to disk.</p>
<p>Perlin noise is is made by blending together gradients evenly spaced apart in a grid. By adjusting the spacing, you can change the coarseness of the generated texture. The 'cell width' option determines this coarsness. The resulting noise texture will tile seamlessly if the image width and height are whole multiples of the cell size. For best results, use numbers that are powers of 2 for the width, height and cell size.</p>
163
+
164
+
<p>Often several levels of noise are merged together to create a cloudy effect. This is done by creating several different noise images, with each half the coarsness of the previous one. The images are then blended together. The more levels, the more cloudy the final image will look. By using the 'levels' option, you can add extra layers of noise that are blended into your top level noise.</p>
165
+
166
+
<p>By default a black and white texture will be generated (ie, the red, green and blue channels are all set to the same value and the alpha channel is solid white). For some applications, you may wish to have different noise patterns in all of the channels. By checking 'color', you will write different noise textures into each of the red, green and blue channels, and by checking 'alpha' you will write noise into the alpha channel.</p>
167
+
168
+
<p>By checking 'groovy', you rectify the noise. That is, all values in the noise that are mid grey or darker are inverted and then the texture is resampled to fill the entire black-to-white range. This creates a groove-like effect in the final texture which can be useful for some applications.</p>
169
+
170
+
<p>The randseed determines the starting state of the random number generator. By changing it, you can create a different pattern of randomness in your image.</p>
0 commit comments