Author Archives: Zevan

Recursion Form

CLICK HERE TO COPY
Actionscript:

x = y = 10

graphics.lineStyle(1,0);

drawBox(6);

 

function drawBox(iter:Number=10, count:Number=1, y:Number=0, w:Number=500):void{

       if (count <iter){

               var width:Number = w / count

               for (var i:int = 0; i<count; i++){

                   graphics.drawRect(i * width, width * [...]

Posted in Graphics, functions | Tagged , , | 6 Comments

QuickBox2D Editor 2B Released

I'll be releasing the QuickBox2D on googlecode in the near future based on the response to yesterdays post.

Posted in QuickBox2D | Tagged , , , , | 16 Comments

To release or not to release…

So I have a QuickBox2D editor that I've had since the earliest version of QuickBox2D. It is really pretty buggy and imperfect. I'm wondering if I should release it even though it's really buggy... my main issue is I won't be able to guarantee that it is a safe editor to use for real projects. [...]

Posted in QuickBox2D | Tagged , | 13 Comments

AS Quiz #18

Today's quiz is about BitmapData and the Graphics class...
Number of Questions : 5
Difficulty : Medium
Topic : BitmapData, Graphics

Posted in Quiz | Tagged , , , | 8 Comments