[PV3D] サンプル2 (3Dのアニメーション)
forked from [PV3D] サンプル1 (3Dの初期表示) (diff: 15)
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/yxUo
*/
package {
import flash.events.Event;
import org.papervision3d.materials.WireframeMaterial;
import org.papervision3d.objects.primitives.*;
import org.papervision3d.view.BasicView;
public class Sample2 extends BasicView {
private var sphere:Sphere; // 球面のインスタンス
public function Sample2():void {
// マテリアルを作成
var material:WireframeMaterial = new WireframeMaterial(0xFF0000);
// 3Dオブジェクトを作成
sphere = new Sphere(material, 300, 10, 10);
// 3Dシーンに追加して、表示させる
scene.addChild(sphere);
// レンダリングを開始
startRendering();
// エンターフレームを設定
addEventListener(Event.ENTER_FRAME, loop);
}
private function loop(e:Event):void {
// 球面をY軸方向に回転
sphere.rotationY += 1;
}
}
}