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)
0
votes
0answers
22 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!
...
-4
votes
0answers
38 views
Pong game in Processing [closed]
Would be glad if just a few person can rate and improvements for my game :)
Thank you!<3
...
2
votes
2answers
81 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
106 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
60 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
96 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 ...
4
votes
0answers
44 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
54 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
77 views
0
votes
1answer
63 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
93 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
283 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
303 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 ...