Open-source programming language and IDE built to teach the fundamentals of computer programming in a visual context, and to serve as the foundation for electronic sketchbooks. - (adapted from http://processing.org)
1
vote
0answers
82 views
Pac-Man-ish maze game
I am a freshman in university. This Pac-Man-ish Game is my final Computer science homework. I know my code is not perfect and has so many to be improved. However, Compared to corrections of this game, ...
3
votes
1answer
128 views
“Destroy the Asteroid” Game
I made this game for my computer science class.
Here is my professor's requirements:
Write a Processing program that draws a triangle in the middle of the window.
Rotate the triangle when ...
2
votes
1answer
70 views
Pong game in Processing with Java
I programmed a Pong game in the Editor Processing! I would be glad if you could rate the code and give some improvements ;) Thanks a lot!
...
2
votes
2answers
106 views
My spaceship is slow to explode after being hit by the asteroid
I am making a game for my computer science class. My professor's requirements are:
Write a Processing program that draws a triangle in the middle of the window.
Rotate the triangle when the left and ...
6
votes
1answer
184 views
Java snow animation
I was inspired by this to write a graphic snow animation in Java/Processing. It works great, but it has some design issues.
The full project is here on github;
...
4
votes
0answers
125 views
Multi-function clock GUI
I was sitting in my bedroom, looking at my Powers of 2 clock sitting next to my radio, under my analog clock on the wall, and wondered to myself: "Why have all these different clocks when I can have ...
4
votes
1answer
180 views
Seven-segment display GUI
I am building a GUI to display a digital clock face (four seven segment displays), and I have a selector to switch between 12/24-hour formats. I have working code to show both formats, but it is ...
5
votes
0answers
60 views
Clone of “Pop the Lock” iPhone Game
As an exercise, I decided to program my own version of the game Pop the Lock for the iPhone. The look and functionality are essentially the same, though the controls are modified for playing on a ...
3
votes
1answer
59 views
Binary/yijing clock in Processing with excessive resource consumption
I've been learning processing for the last week or two, and I've made a couple of little 'desktop toy' type apps like this one that I'm quite pleased with. However, it just occurred to me today to ...
2
votes
1answer
82 views
0
votes
1answer
67 views
New features for Processing game/desk accessory
I have written a simple desk accessory in Proccessing called Trip, you can see it below. It is working, but it is very simple, and needs more features.
...
1
vote
1answer
2k views
Organizing classes for Blackjack game
I have to write a Blackjack game for college using the Processing language. It has to be done in a strict object-oriented approach, so I can't make an object of a class in another class unless there ...
3
votes
1answer
94 views
Zero crossings from a 1D signal
I'm trying to get the peaks/zero crossings from a basic 1D signal and am not sure if my naive/basic approach is correct:
...
3
votes
1answer
305 views
Ray reflection with a triangle
I'm trying to reflect a ray of a triangle using Processing and not sure I got the code right. I'm using two bits of pseudo code from two locations:
Intersection of a Line with a Plane from Paul ...
6
votes
2answers
314 views
Particles moving around a Perlin Noise field
I made this sketch in Processing (basically Java) that consists of a bunch of particles moving around a Perlin Noise field. Each particle is aware of the position of one other particle and this ...