AS3 Cubic Bezier Looping Lines

Posted: February 5th, 2010 | Author: Zack | Filed under: ActionScript 3, Experimental | Tags: , , | 2 Comments »

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

Posted: February 1st, 2010 | Author: Zack | Filed under: Experimental, HTML 5, JavaScript, Standards | Tags: , | 2 Comments »

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 »