Quick Start Guide

Step-by-step tutorial to begin exploring generative art and algorithms with Elhnon.

Step 1: Setup Your Environment

Ensure you have:

  • Processing installed or p5.js in browser
  • Basic understanding of JavaScript or Java
  • An art idea or inspiration ready

Step 2: Choose a Generative Method

Pick one of Elhnon's algorithm types for experimentation:

  • Fractal Generators for recursive patterns
  • Noise Functions for organic textures
  • Mandelbrot Set simulations

Step 3: Explore Our Demo Code

Try our sample generative art code snippet below:

                    function setup() {
                      createCanvas(600, 600);
                    }
                    
                    function draw() {
                      translate(300, 300);
                      stroke(255);
                      noFill();
                      for (let r = 0; r < 10; r++) {
                        ellipse(0, 0, 400 + r*10, 400 + r*10);
                      }
                    }

This simple example uses Processing.js to create concentric ellipses.

Step 4: Customize & Iteration

Build upon these examples by:

Step 5: Share Your Work

You can share your generative art in these forms:

Pro Tips

Save Progress

Use GitHub to version your creative experiments and share your process with the Elhnon community.

Experiment Daily

Create small daily variations of the same code pattern. You'll find new artistic expressions each day.

Use the Documentation

Check our full generative art library for additional algorithmic patterns.

Got Questions?

Need help with your tutorial or want to see more examples? Reach out directly.

💬 Ask the Community