[PV3D] サンプル1 (3Dの初期表示)

by clockmaker
♥3 | Line 13 | Modified 2009-11-30 11:36:40 | MIT License
play

ActionScript3 source code

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

package {
    import org.papervision3d.materials.*;
    import org.papervision3d.objects.primitives.*;
    import org.papervision3d.view.*;
    
    public class Sample1 extends BasicView {
        public function Sample1():void {
            // マテリアルを作成
            var material:WireframeMaterial = new WireframeMaterial(0xFF0000);
            
            // 3Dオブジェクトを作成
            var sphere:Sphere = new Sphere(material, 300, 10, 10);
            
            // 3Dシーンに追加して、表示させる
            scene.addChild(sphere);
            
            // レンダリングを開始
            startRendering();
        }
    }
}

Forked