Example usage for javax.media.j3d View setPhysicalEnvironment

List of usage examples for javax.media.j3d View setPhysicalEnvironment

Introduction

In this page you can find the example usage for javax.media.j3d View setPhysicalEnvironment.

Prototype

public void setPhysicalEnvironment(PhysicalEnvironment physicalEnvironment) 

Source Link

Document

Sets the view model's physical environment to the PhysicalEnvironment object provided.

Usage

From source file:MixedTest.java

protected View createView(ViewPlatform vp) {
    View view = new View();

    PhysicalBody pb = createPhysicalBody();
    PhysicalEnvironment pe = createPhysicalEnvironment();

    AudioDevice audioDevice = createAudioDevice(pe);

    if (audioDevice != null) {
        pe.setAudioDevice(audioDevice);/*from  www  .  j a  v a 2 s .  com*/
        audioDevice.initialize();
    }

    view.setPhysicalEnvironment(pe);
    view.setPhysicalBody(pb);

    if (vp != null)
        view.attachViewPlatform(vp);

    view.setBackClipDistance(getBackClipDistance());
    view.setFrontClipDistance(getFrontClipDistance());

    Canvas3D c3d = createCanvas3D();
    view.addCanvas3D(c3d);
    addCanvas3D(c3d);

    return view;
}