Thank you for the kind reply. I will give Xith3D a try - I am just getting too frustrated with the Java3D environment.
Can you (or anyone else) help me with the following newbie problem:
I have downloaded Xith3D-0.9.7-dev-B1618.zip and am trying out the "Chapter01a.java" code but am getting some strange results. The canvas3D GUI displays but has wierd bitmap images. The code follows:
import org.xith3d.loop.RenderLoop;
import org.xith3d.render.Canvas3D;
import org.xith3d.render.Canvas3DFactory;
import org.xith3d.base.Xith3DEnvironment;
/**
* XIN - "Our fisrt Empty Scene" example coding.
*
* @author Marvin Froehlich (aka Qudus)
*/
public class Chapter01a {
public Chapter01a() {
Xith3DEnvironment env = new Xith3DEnvironment();
Canvas3D canvas = Canvas3DFactory.createWindowed(800, 600,"My empty scene");
env.addCanvas(canvas);
RenderLoop rl = new RenderLoop(env);
rl.setMaxFPS(120f);
//rl.setXith3DEnvironment(env);
// never forget to start the RenderLoop!
rl.begin();
}
public static void main(String[] args) {
new Chapter01a();
}
}
The GUI pop-up is attached as a jpeg.
Any Ideas? I am running NetBeans6.5.
Once again, thank you.