import org.xith3d.geometry.Cube;
import org.xith3d.render.base.Xith3DEnvironment;
import org.xith3d.render.canvas.Canvas3DWrapper;
import org.xith3d.render.canvas.Canvas3DWrapper.Resolution;
import org.xith3d.render.loop.RenderLoop;
Any help?
Yes. The package names have changed.
org.xith3d.geometry.Cube -> org.xith3d.shapes.Cube
org.xith3d.render.base.Xith3DEnvironment -> org.xith3d.base.Xith3DEnvironment
org.xith3d.render.loop.RenderLoop -> org.xith3d.loop.RenderLoop
Canvas3DWrapper does not exist anymore (as well as Resolution). A Canvas3D is now created like this:
Canvas3D canvas = Canvas3DFactory.create*( ... );
where the * is either nothing, or Windowed or Fullscreen. Just choose one of the create methods, that you like best.
Please read "Xith3D in a Nutshell" (XIN). It will tell you all the basics about Xith3D including Canvas3D creation, Xith3DEnvironment and RenderLoop. You can get it at xith.org in the Docs section.
Marvin