Basic: Papervision3D , Plane and Movieclip Meterail

This is my first Papervision3D. I am starting to learn papervision3d. Download the source if you want to start with Papervision3D:Uh! sorry Blogger not allow to upload . so please let view the very summary code as below:package{ import flash.display.Bitmap; import flash.display.GradientType; import flash.display.Graphics; import flash.display.MovieClip; import flash.display.Sprite;

p1

AS3: Short statements

Call functionthis[shapes[currentShape]]();Meaning:shapes is array of function.exp: shapes[currentShape] = "drawingLine"so it mean drawingLine();Object Namethis['ship' + i]Meaning:this is current object. there object named ship1, ship2, ship3, ship4so in for loop, when i = 2 , it means calling to object shi

p1

Width and Hieght of Rectangle that fill the Area of inner oval

I don't have the detail formula. I just get the answer by experiment drawing Oval and Rectangle. I measure the width of oval and width of rectangle, then I got the answer as below:wRec = wCir / 1.41hRec = hCir / 1.41It is useful when we want to add the textbox area to an oval without make text show out of the ov

p1