Hello,
If you are using a com.sun.j3d.utils.geometry.Box you can do the following:
//----------------------------------------------------------------------- Create the Box
Box myBox = new Box(1.0f, 1.0f, 1.0f, Primitive.GENERATE_TEXTURE_COORDS,
new Appearance());
Appearance frontAppearance = new Appearance();
TextureLoader loader = new TextureLoader(this.getClass().getResource("../images/C006BASZOM.jpg"), canvas);
//----------------------------------------------------------------------- For each texture
Appearance frontAppearance = new Appearance();
frontAppearance.setTexture(loader.getTexture());
//----------------------------------------------------------------------- Place the textures
myBox.getShape(Box.FRONT).setAppearance(frontAppearance);
myBox.getShape(Box.BACK).setAppearance(backAppearance);
myBox.getShape(Box.BOTTOM)....
Hope this help,


