AS3 Cubic Bezier Looping Lines

For this experiment I took some code I had written for a recent project and repuprosed it in a more artistic and abstract manner. The idea is basically to loop for a specified distance and create points, which are later connected into a continuous cubic bezier line. Here is the code: public function createLoopingLine(distance:Number):void { [...]

Read the rest of this post »


HTML 5 & JavaScript Particle Emitter

With all the buzz around the HTML 5 Canvas Element, I wanted to give it a try myself. So i pulled together this particle emitter, using JavaScript as the controller and the Canvas Element as the renderer. I started of with what I am going to call the “Base Class”, within the particleEmitter.js file. In [...]

Read the rest of this post »