In case Flash no longer exists; a copy of this site is included in the Flashpoint archive's "ultimate" collection.

Dead Code Preservation :: Archived AS3 works from wonderfl.net

forked from: Tweet Papervision3D

一行にしてみた
// forked from clockmaker's Tweet Papervision3D
// 一行にしてみた
package {
    import org.papervision3d.objects.primitives.*;
    import org.papervision3d.view.*;
    public class TweetPV3D extends BasicView {
        public function TweetPV3D() {
            addEventListener("enterFrame",function(s:Sphere):Function {return function():void {s.yaw(2); singleRender();}}(scene.addChild(new Sphere()) as Sphere));
        }
    }
}