Papervision3D 坐标轴

发布于 2024-11-09 10:51:38 字数 96 浏览 0 评论 0原文

我有一个 Flash 应用程序,并且使用 papervision3d 库。我将对象放入场景中,没问题,但我还想向用户显示坐标轴(x、y 和 z)。 有什么方法可以显示这些轴吗?

I have a flash application and I use papervision3d library. I put my objects to the scene, no problem but I also want to show the coordinate axes (x,y and z) to user.
Is there any way to show these axes?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

初熏 2024-11-16 10:51:38

这就是 UCS< /a> 对象:

scene.addChild(new UCS());

这里是一个非常基本的示例:

package {
    import flash.display.Sprite;
    import flash.events.Event;
    import org.papervision3d.view.*;
    import org.papervision3d.objects.*;
    import org.papervision3d.objects.primitives.*;
    import org.papervision3d.objects.special.*;

    public class HelloPV3D extends Sprite {

        private var view:BasicView;

        public function HelloPV3D()  {
            view = addChild(new BasicView()) as BasicView;
            view.scene.addChild(new UCS());
            view.scene.addChild(new Sphere());
            this.addEventListener(Event.ENTER_FRAME,update);
        }
        private function update(e:Event):void{
            view.camera.orbit(mouseY/stage.stageHeight,mouseX/stage.stageWidth,false);
            view.singleRender();
        }
    }
}

UCS 演示

That would be the UCS object:

scene.addChild(new UCS());

Here's a very basic example:

package {
    import flash.display.Sprite;
    import flash.events.Event;
    import org.papervision3d.view.*;
    import org.papervision3d.objects.*;
    import org.papervision3d.objects.primitives.*;
    import org.papervision3d.objects.special.*;

    public class HelloPV3D extends Sprite {

        private var view:BasicView;

        public function HelloPV3D()  {
            view = addChild(new BasicView()) as BasicView;
            view.scene.addChild(new UCS());
            view.scene.addChild(new Sphere());
            this.addEventListener(Event.ENTER_FRAME,update);
        }
        private function update(e:Event):void{
            view.camera.orbit(mouseY/stage.stageHeight,mouseX/stage.stageWidth,false);
            view.singleRender();
        }
    }
}

UCS Demo

鲜血染红嫁衣 2024-11-16 10:51:38

当然有。我编写了一个名为 Trident3D 的类来表示坐标轴。单击此处查看相关文章或下载<包含源代码的 href="http://www.doublebow.net/uploads/assets/a006/trident_3d_demo.zip" rel="nofollow">demo 。

Of course there is. I wrote a class called Trident3D that represents the coordinate axes. Click here to see article about it or download the demo that contains the source code.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文