This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //Final Sketch | |
| //REMmo | |
| //by Ali Price | |
| int stage = 0; | |
| //font | |
| PFont HelveticaNeueBold; | |
| PFont HelveticaNeueReg; | |
| int fSizeBig = 24; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //Bio Sketch | |
| import gifAnimation.*; | |
| //Water GIF | |
| Gif waterGif; | |
| Gif polGif8; | |
| //Gif polGif1; | |
| //Gif polGif2; | |
| //Gif polGif3; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //Wonderland 2.0 | |
| //Ali Price | |
| //images | |
| PImage background; | |
| PImage clock; | |
| PImage foil; | |
| PImage checkerboard; | |
| PImage poem; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //Programming Midterm | |
| //By Ali Price | |
| //Program that imitates photoshop | |
| //but when the tools are clicked, something mildly related to the tool will happen | |
| //background is screenshot of photoshop | |
| PImage bg; | |
| //image "being edited" | |
| PImage original; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //Mesmerizing Sketch | |
| //by Ali Price | |
| Fish myFish1; | |
| Fish myFish2; // Two fishes! | |
| void setup() { | |
| size(400, 400); | |
| background(#B1FF0A); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Gold Fish Sketch with Objects | |
| // by Ali Price | |
| Fish myFish1; | |
| Fish myFish2; // Two fishes! | |
| void setup() { | |
| size(500,500); | |
| // identifying the 2 fish |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //Ali Price | |
| //Fictional Book Project Alterations | |
| //The Bluest Eye | |
| //original by Julia Rose | |
| //Variables | |
| float c1 = 0; | |
| float c2 = 255; | |
| float c1Change = 1; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Ali Price | |
| // Lesson 3 Spaceship Functions | |
| // Declare all global variables (stays the same) | |
| int x = 0; | |
| int speed = 1; | |
| PImage imgSpace; | |
| PImage imgShip; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //Ali Price | |
| //Hunger Games Valentines Day Game | |
| //Katniss has to choose between Gale and Peeta for vday | |
| //Katniss will be the mouse | |
| //Gale will be on the left and Peeta on the right | |
| //the background shifts color | |
| // Variables | |
| //gale is on left | |
| float galeX = 0; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //lesson 2: Variable Zoog | |
| //Feature #1: Zoog will move up the screen | |
| //and go off the screen and remain there | |
| //Feature #2: Zoog's eyes will be colored randomly as she moves | |
| //Declaring Variables | |
| //zoogX and zoogY are for Feature #1 | |
| //eyeR, eyeG, eyeB are for Feature #2 |
NewerOlder