Visualizations different noiseand, for now, only Perlin noise is supported.
- Exports outputs to:
perlin_noise.png— visual representation of the noise.perlin_noise.json— raw noise data in JSON format.
- Easy to build and extend for additional noise types in the future.
-
Build the application:
make
or
go build -o ./bin/perlin_noise ./cmd/main.go
-
Run the application:
./bin/perlin_noise
-
View the outputs:
- Check the current directory for the generated
perlin_noise.pngandperlin_noise.json.
- Check the current directory for the generated
- Implement additional noise types (e.g., Simplex noise)
- Add configuration options for noise parameters
- Improve visualization and export functionalities
