List of usage examples for javax.media.j3d View RELATIVE_TO_FIELD_OF_VIEW
int RELATIVE_TO_FIELD_OF_VIEW
To view the source code for javax.media.j3d View RELATIVE_TO_FIELD_OF_VIEW.
Click Source Link
From source file:SwingTest.java
/** * Creates the View Platform for the View *///from ww w.j a v a 2s. c o m protected ViewPlatform createViewPlatform() { ViewPlatform vp = new ViewPlatform(); vp.setViewAttachPolicy(View.RELATIVE_TO_FIELD_OF_VIEW); vp.setActivationRadius(getViewPlatformActivationRadius()); return vp; }
From source file:MixedTest.java
protected ViewPlatform createViewPlatform() { ViewPlatform vp = new ViewPlatform(); vp.setViewAttachPolicy(View.RELATIVE_TO_FIELD_OF_VIEW); vp.setActivationRadius(getViewPlatformActivationRadius()); return vp;/*from w w w . j a v a 2 s. c om*/ }