3

グラフィックの割り当てを開始したばかりで、Java3D を初めて使用します。私は椅子を作ることから始めました (以下を笑わないでください:P)。

少しずれていると確信しているので、誰かが正しい使用パターンを教えてくれるかどうか知りたかっただけです。

ここに私が描いたものがあります:

椅子の試みの最初の

ご覧のとおり、シート用のボックスと脚用の 4 つのシリンダーです。

これを描画するために使用したコードは次のとおりです。

public class Chair {

    public Chair() {

        SimpleUniverse universe = new SimpleUniverse();

        BranchGroup group = new BranchGroup();

        // Main seat component

        Box box = new Box(.39f,.03f,.37f, new Appearance());

        TransformGroup seatGroup = new TransformGroup();

        Transform3D transform = new Transform3D();

        Vector3f vector = new Vector3f(.0f, .0f, .0f);
        transform.setTranslation(vector);
        seatGroup.setTransform(transform);
        seatGroup.addChild(box);

        // Legs of chair
        Cylinder leg1 = new Cylinder(.07f, .45f);
        Cylinder leg2 = new Cylinder(.07f, .45f);
        Cylinder leg3 = new Cylinder(.07f, .45f);
        Cylinder leg4 = new Cylinder(.07f, .45f);

            //Create new TransformGroup, vector position for each leg
        TransformGroup leg1Group = new TransformGroup();
        Transform3D legTransform = new Transform3D();
        Vector3f leg1Position = new Vector3f(-.37f, -0.225f, -.35f);
        legTransform.setTranslation(leg1Position);
        leg1Group.setTransform(legTransform);
        leg1Group.addChild(leg1);

        seatGroup.addChild(leg1Group);

        TransformGroup leg2Group = new TransformGroup();
        Transform3D leg2Transform = new Transform3D();
        Vector3f leg2Position = new Vector3f(.37f, -0.225f, .35f);
        leg2Transform.setTranslation(leg2Position);
        leg2Group.setTransform(leg2Transform);
        leg2Group.addChild(leg2);

        seatGroup.addChild(leg2Group);

        TransformGroup leg3Group = new TransformGroup();
        Transform3D leg3Transform = new Transform3D();
        Vector3f leg3Position = new Vector3f(.37f, -0.225f, -.35f);
        leg3Transform.setTranslation(leg3Position);
        leg3Group.setTransform(leg3Transform);
        leg3Group.addChild(leg3);

        seatGroup.addChild(leg3Group);

        TransformGroup leg4Group = new TransformGroup();
        Transform3D leg4Transform = new Transform3D();
        Vector3f leg4Position = new Vector3f(-.37f, -0.225f, .35f);
        leg4Transform.setTranslation(leg4Position);
        leg4Group.setTransform(leg4Transform);
        leg4Group.addChild(leg4);

        seatGroup.addChild(leg4Group);

            //Add seat group to main object group
        group.addChild(seatGroup);


            //Stuff to see the universe//

        Color3f light1Color = new Color3f(.1f, 1.4f, .1f); // green light

        BoundingSphere bounds =

        new BoundingSphere(new Point3d(0.0, 0.0, 0.0), 100.0);

        Vector3f light1Direction = new Vector3f(4.0f, -7.0f, -12.0f);

        DirectionalLight light1

        = new DirectionalLight(light1Color, light1Direction);

        light1.setInfluencingBounds(bounds);

        group.addChild(light1);

        universe.getViewingPlatform().setNominalViewingTransform();

        // add the group of objects to the Universe

        universe.addBranchGraph(group);

        Canvas3D canvas = new Canvas3D(SimpleUniverse.getPreferredConfiguration());
        ViewingPlatform viewPlatform = universe.getViewingPlatform();
        BoundingSphere boundingSphere = new BoundingSphere(new Point3d(0f, 0f, 0f), 100f);
        // Add a behaviour to viewPlatform, allowing the user to rotate, zoom, and straff the scene
        OrbitBehavior orbitBehaviour = new OrbitBehavior(canvas, OrbitBehavior.REVERSE_ALL | OrbitBehavior.STOP_ZOOM);
        orbitBehaviour.setSchedulingBounds(boundingSphere);
        viewPlatform.setViewPlatformBehavior(orbitBehaviour);

    }

    public static void main(String[] args) {

        new Chair();

    }

}

多くの重複があるように見えるので、これがグループの正しい使用法であるかどうかを知りたいだけです...誰かがこれに光を当てることができれば、私はそれを大いに感謝します!!

4

1 に答える 1

1

これは、java3dを学習するための良いステップです。自家製または自家製のスクリプトを使用して、コードを読み、理解し、記憶できるようにすることで、より速く、より優れたプログラマーになることができます。しかし、より良い定義をすることは、経験を積んでそれをあなたに強制することです。学習は良いですが、これを真に習得するには、独自の方法に従う必要があります。なぜなら、人はそれぞれ何らかの形で異なっているからです。per'sの足跡をたどりますが、インデントに直接足を踏み入れないでください。

于 2013-03-14T01:10:03.897 に答える