End Of The Week Reflection: Christina Schaefer

 

This week I was introduced to a new computer program called Processing. Processing has a lot to do with code building and creates animation. For example the code below creates a bright pink background, purple ice cream, and a brown ice cream cone. The coding can do a lot of things such as adding movement to your graphic. It was a big challenge at first and Processing can be very confusing at times, but with the help of my teachers and peers I feel like I can really accomplish a lot if I set my mind to it. I cannot wait for the next class session because we’re are going to be playing with a wii remote and make our final animation move! Code to Make an Ice Cream Cone

size(500,500); 

background(240,29,219); 

fill(166,84,198); 

ellipse(300,160,210,210); 

fill(198,147,84); 

triangle(300,400,200,200,400,200);