Skip to content

Instantly share code, notes, and snippets.

View AlessandraPrice's full-sized avatar

AlessandraPrice

View GitHub Profile
//Final Sketch
//REMmo
//by Ali Price
int stage = 0;
//font
PFont HelveticaNeueBold;
PFont HelveticaNeueReg;
int fSizeBig = 24;
//Bio Sketch
import gifAnimation.*;
//Water GIF
Gif waterGif;
Gif polGif8;
//Gif polGif1;
//Gif polGif2;
//Gif polGif3;
//Wonderland 2.0
//Ali Price
//images
PImage background;
PImage clock;
PImage foil;
PImage checkerboard;
PImage poem;
@AlessandraPrice
AlessandraPrice / Midterm_Photoshop.pde
Last active March 15, 2017 14:01
Midtern_Photoshop
//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;
//Mesmerizing Sketch
//by Ali Price
Fish myFish1;
Fish myFish2; // Two fishes!
void setup() {
size(400, 400);
background(#B1FF0A);
// Gold Fish Sketch with Objects
// by Ali Price
Fish myFish1;
Fish myFish2; // Two fishes!
void setup() {
size(500,500);
// identifying the 2 fish
@AlessandraPrice
AlessandraPrice / The Bluest Eye.pde
Created February 22, 2017 04:57
Additions to The Bluest Eye
//Ali Price
//Fictional Book Project Alterations
//The Bluest Eye
//original by Julia Rose
//Variables
float c1 = 0;
float c2 = 255;
float c1Change = 1;
@AlessandraPrice
AlessandraPrice / Lesson 3 Spaceship.pde
Created February 22, 2017 04:42
Lesson 3 Spaceship
// Ali Price
// Lesson 3 Spaceship Functions
// Declare all global variables (stays the same)
int x = 0;
int speed = 1;
PImage imgSpace;
PImage imgShip;
@AlessandraPrice
AlessandraPrice / Hunger Game Valentine's Day Game.pde
Created February 16, 2017 06:13
Hunger Game Valentine's Day Game
//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;
@AlessandraPrice
AlessandraPrice / My Version of Zoog.pde
Created February 8, 2017 04:29
My Version of Zoog.pde
//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