Date: August 31st, 2009
A while back I was given my first flash project that required me to use Papervision 3D. If that wasn’t daunting enough, the design of the project required that there be a depth of field effect on the elements – something that papervision cannot do. (If i am wrong about that, please don’t tell me now…)
After learning the basics of papervision – which has plenty of tutorials on the interwebs – I started brainstorming an approach for faking depth of field. Here is what I came up with.
Continue reading →
Date: May 24th, 2009
Catching as many bugs as you can – that’s what Grabbit is all about.
You play as a frog, sitting on the side of the pond. As bugs fly over your head you use your tongue to catch as many as you can. To keep things interesting, there is a timer counting down the whole time. Every time you catch 10 bugs, you get a little bit more time.
The longer you last, the harder the bugs are to catch, and the more points you get.
See if you can get the highest score!
Continue reading →
Date: May 24th, 2009
Separating Axis Theorem (SAT) is a technique for calculating collisions between convex polygons.
I’m by no means an expert on it, but after the need arose for me to do some collision detection I did a pile of reading and finally got it working in ActionScript 3.
I thought I would share what I learned in the hope others wouldn’t suffer so much
Continue reading →
Date: May 24th, 2009
I was creating an online gallery for a project at work when came across the need for dynamically created reflections. We had an existing class that we usually used for reflections, but it was a bad port from AS2 to AS3 and I was never happy with it. It tended to be hard to work with and pretty inefficient.
In an attempt to make things better, and make my life easier in the process, I sat down and created my own Reflection class.
Here is what I came up with.
Continue reading →
Date: May 24th, 2009
Whilst doing some work on an Mathematics Learning Object I was confronted with the problem of having to be a variety of different graphs.
Due to the way that these projects change over the construction period it soon became apparent that hand drawing these graphs would be too time consuming, so I set out to create some classes that could do most of the heavy lifting.
Continue reading →
Date: May 24th, 2009
In a similar fashion to my AS3 Graphing Classes, my MathML parser was created out of necessity. I was working on a project that had to display some equations, but drawing them out manually seemed a bit over the top.
I originally looked to see if anything was already available on the net but had no luck. Considering that the only other option was to create each equation manually, I decided to try and write my own MathML parser.
Continue reading →
Date: May 24th, 2009
TextJumbler is pretty useless. It basically just jumbles up test is a particular fashion that allows the text to still be kinda readable.
It was based on a chain email I got a while back which explained that if all but the first and last letters of a word are jumbled up they could still be read.
Continue reading →