Archive

Archive for October, 2008

Barack Obama Rally in St. Louis – Wallpaper

October 20th, 2008

Here’s a little something I whipped up based on a photo I took at the Obama rally on Oct. 18th, 2008

Julian Personal Projects , , ,

AS3 bitmap mosaic class

October 1st, 2008

This class will allow you to create a pixellated copy of any display object.

It allows for varying pixel sizes and caching of rendered pixels so you don’t have to redraw them every time.

mosaic

Usage is as follows:

var myMoz:Mosaic = new Mosaic(yourDisplayObj:DisplayObject, pixelSize:uint, useCache:Boolean);
addChild(myMoz);

or

var myMoz:Mosaic = new Mosaic(yourDisplayObj);
myMoz.pixelSize = 10;
myMoz.render();

Give it a try and let me know what you think.

Julian Personal Projects , , ,