Hi everyone,
It seems that the way of I used to show more than one View of a universe has
been
deprecated, and also broken. Here's what worked in my applet before:
Canvas3D myCanvas3D = new Canvas3D(null);
add(myCanvas3D);
Canvas3D rightCanvas3D = new Canvas3D(null);
add(rightCanvas3D);
View myView = constructView(myCanvas3D);
myView.setMonoscopicViewPolicy(View.LEFT_EYE_VIEW);
View myView2 = constructView(rightCanvas3D);
myView2.setMonoscopicViewPolicy(View.RIGHT_EYE_VIEW);
Locale myLocale = constructViewBranch(myView);
Locale myLocale2 = constructViewBranch(myView2);
constructContentBranch(myLocale);
Now I get:
"Note: The method void setMonoscopicViewPolicy(int) in class
javax.media.j3d.View has been deprecated."
and only the left-eye view works correctly.
Does anyone know the new-and-improved method for doing right and left-eye views?
I tried using
java.utils.universe.Viewer, but so far without success.
From,
Greg.
This communication is for informational purposes only. It is not intended as
an offer or solicitation for the purchase or sale of any financial instrument
or as an official confirmation of any transaction. All market prices, data
and other information are not warranted as to completeness or accuracy and
are subject to change without notice. Any comments or statements made herein
do not necessarily reflect those of J.P. Morgan Chase & Co., its
subsidiaries and affiliates.
===========================================================================
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff JAVA3D-INTEREST". For general help, send email to
[EMAIL PROTECTED] and include in the body of the message "help".