1st sketch ICM 2017

https://alpha.editor.p5js.org/mfuller/sketches/BJQVBTat-

Went to ArĂ³n for help with the Bezier for the string of the balloon and how to scale an object. He first spoke of how important it is to design, document and inform before developing the program. Then he showed me basic ways to rotate and Scale. A big move and insight was push(); & pop(); so I could isolate the object.

Like to try to develop this sketch and get it to animate. How does a balloon move or raise an object? Is a balloon one directional?

Reproduce this Image with Code

Above the reproduced image and the code below. Totally trial and error and intuitive. I really need a better tool for scale and color is through the eye of the beholder.

function draw() {

background(0,255,255);
strokeWeight(40);
stroke(255,0,0);
line(0,0,600,400);

strokeWeight(0);
ellipse(300, 200, 300, 220);
fill(0,0,153);
rect(410,160,40,40);
strokeWeight(0);
fill(0,204,0);
}