flash on 2009-12-9

by chomo
♥0 | Line 11 | Modified 2009-12-09 14:01:38 | MIT License
play

ActionScript3 source code

/**
 * Copyright chomo ( http://wonderfl.net/user/chomo )
 * MIT License ( http://www.opensource.org/licenses/mit-license.php )
 * Downloaded from: http://wonderfl.net/c/tonW
 */

package{
   import org.papervision3d.view.*;
   import org.papervision3d.objects.primitives.*;
   
   public class Test extends BasicView{
      public function Test() {
           var mySphere:Sphere = new Sphere(null,600,40,40);
           scene.addChild( mySphere );
           startRendering();
      }
   }
}