Here’s the link to my project:
https://editor.p5js.org/Amber1007/sketches/VlACN3Xa4
My project presents a picture of elevator which we can see it everyday. I first took a photograph of the elevator in the academic building. Here’s the photograph.
And then I simplified the photograph into a stick figure. Here’s the simple picture.
Then I began coding.When I found it is difficult to form an arrow, I tried to draw two lines to form it. Here are the coding snippets:
//stroke
stroke(255,255,0);
line(210,160,215,170);//(x,y,w,h)
//stroke
stroke(255,255,0);
line(220,160,215,170);//(x,y,w,h)
I also want to express my sincere gratitude to Learning Assistants who gave me helpful instructions when I have difficulty coding.
After completing this project, I realized that the code runs under its own logic which I should pay more attention to in the future coding projects.I also deepened my understanding of color codes by using them for several times. Maybe I should try to use more colors and shapes next time.