Craft Digital Landscapes with ForgeNoise

Advanced noise generation library for creating natural-looking textures, terrains, and patterns

Key Features

🌌

Multiple Algorithms

Perlin, Simplex, Worley, Value, and Domain Warping noise implementations

High Performance

WebAssembly accelerated computations for smooth real-time visualization

🎚️

Customizable Parameters

Adjust octaves, persistence, lacunarity, and other noise characteristics

💡

Easy Integration

Simple API with intuitive methods and comprehensive documentation

🔄

Lightweight

Optimized code with minimal dependencies for fast loading times

⚙️

Configurable

Fine-tune parameters to achieve exactly the effect you need

Quick Start

<script src="https://cdn.jsdelivr.net/gh/TheEmptynessProject/ForgeNoise@main/dist/forgeNoise.min.js"></script>
// Create a noise generator
const noise = new ForgeNoise(12345);

// Generate 2D noise at coordinates (x, y)
const value = noise.generate2D(x, y);