Home

Awesome

Noice

Noice is a command line Noise generator utility, by Kleber Garcia.

Windows and Linux binaries v1.0.0

blue perlin example

For linux make sure to run the linux-dependencies script, or manually install the dependencies mentioned in the file.

Usage

Check the help menu for information on all the switches:

## long syntax 
noice --help

## short syntax
noice -h

Noice provides ways to pack custom noise patterns per channel. For example, the following command creates a texture with blue noise in the red channel, and white noise in the green channel:

noice -cR -n blue -cG -n white

The -cR and -cG switches activate a particular channel. After a channel switch is parsed, the rest of the commands, such as -n (which is the noise type) will operate on that specific switch. When another switch channel is found, then the tool repeats the process. This allows to configure any packing at will if desired.

Dimensions can be specified using the -d switch. Noice also accepts a more verbose syntax, with the '--' prefix. For example:

noice  -n blue --dimensions=128x128

is the same as writting:

noice -n blue -d 128x128

Channel switches are not mandatory. By default, Noice only writes to the red channel.

Noice can also generate volume textures, for example to create a cloud perlin noise texture:

noirce -n perlin -d 32x32x32 

Resulting in this:

3d perlin

Volume textures are layed out vertically. Engines, such as unity can provide simple tools to import these textures.

Features

Building on windows

To build on windows the following requirements are necessary:

ISPC, tundra and OpenEXR have been precompiled for compilation convenience.

To compile in windows, run:

build.bat release

To generate the solution, run:

gensln.bat

All build artifacts will be located in the t2-output directory.

Building on linux

Linux has only been tested on debian ubuntu. To build on linux, first launch the script that will download the required dependencies:

./linux-deps.sh

This should download:

ISPC is precompiled for convenience.

After this, just run

./build.sh release

All build artifacts will be located in the t2-output directory.

Contributing

Contributions and pull requests are very much welcome! please run the tests when doing so, and ensure to add new tests if necessary. To run the tests, just find the built noice_test application and run it.