🕸️ Neural Mesh

Generative neural network patterns that evolve in real-time through interactive parameters.

Adjust Parameters

100 nodes
70%
50%
1x Speed

Interactive neural mesh visualization will appear here.

Adjust parameters above to generate dynamic patterns.

How It Works

This experiment visualizes a simulated neural network where nodes form connections based on proximity. The system evolves in real-time based on your parameter selections.

Dynamic Generation

Patterns regenerate instantly when parameters change

Interactive Simulation

View how different density thresholds affect network formation

Color Evolution

Watch color gradients shift through intensity variations

Sample Code

// Neural Network Mesh Simulation
function generateMesh(nodes, connections) {
    const network = new Network(nodes);
    for (let i = 0; i < connections; i++) {
        const a = nodes[Math.floor(Math.random() * nodes.length)];
        const b = nodes[Math.floor(Math.random() * nodes.length)];
        if (distance(a, b) < threshold) {
            network.addConnection(a, b);
        }
    }
    return network;
}