User Tools

Site Tools


spcs:2015:day3

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
spcs:2015:day3 [2015/07/07 16:16]
ffpaladin [Homework]
spcs:2015:day3 [2015/07/07 23:53] (current)
ffpaladin [Class Assignments]
Line 17: Line 17:
   - **Processing Practice** - [[https://​users.soe.ucsc.edu/​~sherol/​teaching/​doku.php?​id=processing_intro|Assignment]]   - **Processing Practice** - [[https://​users.soe.ucsc.edu/​~sherol/​teaching/​doku.php?​id=processing_intro|Assignment]]
   - **Processing Project** - Use processing to create your own creature   - **Processing Project** - Use processing to create your own creature
-  - **Keep processing projects on Openprocessing** - Save your projects online so you can have them forever+  - <del>**Keep processing projects on Open Processing** - Save your projects online so you can have them forever. http://​openprocessing.org</​del>​ NEVERMIND, Open Processing is too slow. Use GITHUB!!!! 
 +  - **More Github** - You can store your processing projects directly there and run them with Processing.js - Read: http://​processingjs.org/​articles/​jsQuickStart.html 
 +  - **Finish Certificate Information Registration** - Finish the following form http://​www.wenjuan.com/​s/​uYV7Nbj/​ 
  
 ===== Homework ===== ===== Homework =====
-  * **Blog Post**: Processing. What is Processing? What did you work on in Processing? Past images for what you did. +  * **Blog Post**: Processing. What is Processing? What did you work on in Processing? Past images for what you did. Link to the github.io website online so people can see the animation. 
 +  * **Improve your past work**: Double check your work, and make sure your blog is complete. Make sure you have completed all projects. Finish anything you didn't get to do today. Improve anything that you can!
   * **Blog Post (Optional)**:​ Game Review - http://​www.kongregate.com/​games/​mazapan/​you-have-to-burn-the-rope   * **Blog Post (Optional)**:​ Game Review - http://​www.kongregate.com/​games/​mazapan/​you-have-to-burn-the-rope
 Note: From now on ALL game reviews must address Ludus, Paida, and Narrative. Note: From now on ALL game reviews must address Ludus, Paida, and Narrative.
 +
  
 ===== Teams ===== ===== Teams =====
Line 47: Line 52:
   * Chris, Mike   * Chris, Mike
  
 +
 +
 +<​code>​
 +
 +
 +int x = 0;               // variable x - location
 +int dx = 1;              // variable dx - speed
 +
 +
 +void setup ()           // setup function ​
 +{
 +    size (500,500);
 +}
 +
 +
 +
 +void draw ()            // draw function
 +{
 +  fill(255,​0,​0);​
 +  ellipse(x,​20,​20,​20);​
 +
 +  fill(255,​255,​0);​
 +  ellipse(20,​50,​20,​20);​
 +
 +  fill(0,​255,​0);​
 +  ellipse(20,​80,​20,​20);​
 +  ​
 +  if (x > 500)
 +  {
 +    dx = -dx;
 +  }
 +  ​
 +  x = x + dx;
 +  ​
 +}
 +
 +</​code>​
/soe/sherol/.html/teaching/data/attic/spcs/2015/day3.1436310963.txt.gz · Last modified: 2015/07/07 16:16 by ffpaladin