LookingOutwards-04

I was looking at googles new AR Synthesizer project. They’re experiementing with a form of AR music production by replicating famous synthesizers with CAD and AR. I think its an interesting step into the VR and AR world, with facebook pushing the Metaverse so much those things are becoming increasingling important. It’s not too far away that virtual raves and dance parties with VR DJing are reality. Especially if mokeypox picks up and people are stuck inside again.

It’s also interesting on the topic of recent access to music production materials through technology. Desktop producing on a laptop is extremely viable with the advancements is software and computing most people have access to make music. Obviously AR and VR aren’t very accessable right now but maybe in 20 years everyone will be utilizing AR to cheaply use complex sound engineering tools.

https://artsandculture.google.com/story/7AUBadCIL5Tnow

Project 04: String Art

sketchDownload
//fcooper felix cooper d

var s1=100;
var s2=0;
var s3=150;
var s4=50;

var numLines=50;

var f1=100;
var f2=0;
var f3=50;
var f4=50;

var h1=100;

var c1=50;
var c2=100;
var c3=150;
var c4=100;


function setup() {
    createCanvas(200, 200);
    background(220);

}

function draw() {
    for(var i = 0; i < numLines; i += 1){
        line(s1,s2,s3,s4);
        s1=s1+5;
        s4=s4+3;
    }
    for(var i = 0; i < numLines;i += 1){ //mirrors s
        line(f1,f2,f3,f4);
        f1=f1-5;
        f4=f4+3
    }
    for(var i = 0; i < numLines; i += 1){ //lines down the middle
        line(50,h1,150,h1);
        h1+=3;
    }
    for(var i = 0; i <= 5; i += 1){ // draws hourglass
        line(c1,c2,c3,c4);
        c1+=2;
        c2+=2;
        c3-=2;
        c4+=2;
    }
}

I wanted to try to make some sort of perspective illusion but I think it ended up being an illusion of an illusion in a way. It makes you think maybe something weird is going on but its just fun shapes.