Try to follow some ‘processing’ tutorials which were on youtube.

-Fill : colour
-Each sub phrase comes up with ()+ ; / 세부명령은 ()와 ;를 꼭 써주어 닫아줘야함

-Ellipse : mouse position and scale . ellipse(mouseX,mouseY,60,60) or elipse(random(0,width),random(0,height,60,60)


int age = 20; / functioning replacement


PImage : Processing image /
img = loadImage(“filename”);





for(int i = 0; i < 10; i++) { , means ellipse based moveframe is 30sec, but as put i < 10 means ellipse drawn 10times every single frame.


x pos : width, but put i means that goes 0 to 100 (i <100)
y pos : height1/2 means going half

‘i’ could be replace as other word , ex ) x , y
ellipse x*50, y*50




add color , float and replaced ellipse’s 30,30 to size,size




