xxxxxxxxxx
18
// https://kellylougheed.medium.com/generative-art-with-p5-js-program-your-own-art-6a6ac7e57d87
function preload() {
blue1 = loadImage("BLUE1.png");
green2 = loadImage("GREEN2.png"); // loads images and names them so i can refer back to them
}
function setup() {
createCanvas(400, 400);
background(255);
noStroke();
for (let i = 0; i < 1000; i = i + 1) { // designates spots for random circles and images being generated (repetition); i is 0, it has to be less than 1000, it will move by 1 coordinate each time a shape is generated
fill(0, random(255), random(255), random(255)); // random from green and blue values only
ellipse(random(0, width), random(0, height), random(30, 80));
image(green2, random(400), random(400), 30, 30);
image(blue1, random(400), random(400), 25, 25);
}
}