flash on 2012-11-11

by yurij.shaulov
♥0 | Line 11 | Modified 2012-11-11 00:05:03 | MIT License
play

ActionScript3 source code

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

package {

    import org.papervision3d.objects.primitives.*;

    import org.papervision3d.view.*;

    public class Main extends BasicView {

        public function Main() {

            var sphere : Sphere = new Sphere();
            

            scene.addChild(sphere);

            startRendering();

        };

    }

}