Hello PV3D

by tkinjo
...
@author tkinjo
♥0 | Line 15 | Modified 2009-03-20 22:39:26 | MIT License
play

ActionScript3 source code

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

package  
{
	import org.papervision3d.objects.primitives.Plane;
	import org.papervision3d.view.BasicView;
	
	[SWF(width = "465", height = "465", frameRate = "60", backgroundColor = "#000000")]
	
	/**
	 * ...
	 * @author tkinjo
	 */
	public class Main extends BasicView
	{
		
		public function Main() 
		{
                        var plane:Plane = new Plane();
			scene.addChild( plane );
			startRendering();
		}
		
	}
	
}

Forked