A JavaScript port of the Processing language.

learn more… | top users | synonyms (1)

10
votes
2answers
279 views

Basic block building game

I've spent the last weekend working on this basic block building game, which I'm quite proud of. I do think it can be improved in many places though, e.g, performance issues due to my badly designed ...
10
votes
1answer
136 views

Basic Block Building Game Part 2

I've taken my previous block building game and added some performance improvements, and commented some things that needed to be commented for better explanation. ...
9
votes
1answer
133 views

Basic particle system

After about half an hour of fooling around with Processing.js/JavaScript, I got this fairly decent particle system set up: ...
7
votes
1answer
69 views

Basic physics simulation

I've been fooling around in JavaScript again, and I've come up with this simple physics simulation. I think it has a pretty simple setup, here's "psuedocode" of sorts to explain it. Constructor ...
6
votes
3answers
503 views

Bouncing ball simulation

I was fooling around with some maths and realized that I could use a parabola to represent a bouncing ball. So, naturally, I decided to make it in code. ...
4
votes
1answer
199 views

Random walk terrain generator

I was messing around with Javascript in Khanacademy the other day and this "monstrosity" was born. It's a terrain generator that uses a simplified version of the random walk method. ...