jmeng – Project 0
Part A:
GDE Error: Unable to load profile settings
code:
void drawNollSinusoids() { for (int i = 0; i < 90; i++){ noFill(); stroke(0); beginShape(); period = (float) 0.125; for (int j = 20; j < 580; j++){ x = j; y = 30 + (20 * sin( radians(j) / period )); curveVertex(x, y+(5*i)); period += 0.0005; } endShape(); } exit(); } |
————————————
Part B:
I originally had text in the background displaying the score, which used a font I downloaded from online, but it caused a lot of issues when uploading. The zip file containing the text version is still in my uploaded folder if you would like to view it.
Also, maybe I’m just being stupid, but it wouldn’t let me embed the game with iframe. Did anyone else have these problems?
Comments Off on jmeng – Project 0