Follow Slashdot blog updates by subscribing to our blog RSS feed

 



Forgot your password?
typodupeerror
×

Comment It depends! (Score 1) 1086

I just helped a friend out with a ton of javascript animation for his webcomic (blatant plug: http://www.prequeladventure.com/ ), creating a 3d, semi-interactive environment, all in JS/CSS, and I ended up using a ton of math for it. Simple offset calculations, trig, parabolic arcs, exponential decay, and so on. Ended up giving up some things that would have required finding cubic roots of bezier curves because my math wasn't good enough.

But apart from that, I haven't used any serious math in a long time.

So, it depends... I think the more you rely on interacting or emulating "the real world", the more important math is.

Comment Colobot (Score 1) 704

Hunt down an oldish game called Colobot. Windows only game. Its a typical "world exploration" game but with one very interesting addition.

You can either control the myriad of robots manually, OR... program in a very C++-like language and let them "have at it".

The game encourages code re-use, so once you've coded a particular operation, you're encouraged to re-use it for subsequent levels.

One of the most fun coding experiences I've ever had.

Slashdot Top Deals

To do nothing is to be nothing.

Working...