Think of the diagram like a rainbow: the center is your first 10 years; 2nd semi-circle is ages 10-20; 3rd is 20-30 etc. Using the mousepad, note the care that has been important to you over time: this could be family, teachers, music, poetry, party & protest. Perhaps patterns emerge. Anonymise if necessary using symbols. When finished, press the 's' key to download. If you want, send it to: close.rebecca@gmail.com & I'll make your network inscribed in clay. This program formed part of“The Love Ethic" p5.js showcase, curated by Katie Chaan: https://showcase.p5js.org/#/showcase2021/2021-All
xxxxxxxxxx
let img;
function preload() {
img = loadImage('ceramicbase2.png');
}
function setup() {
createCanvas(windowWidth, windowHeight);
background(0, 0, 0);
image(img, windowWidth/11, windowHeight/10, 850, 550);
}
function draw() {
strokeWeight (2)
stroke(184, 66, 33);
if (mouseIsPressed === true) {
line(mouseX, mouseY, pmouseX, pmouseY);
}
}
var s;
function keyPressed(){
saveCanvas (s,'myNetwork.jpg');
}