这是我用搅拌机创建的椅子:
现在,当我使用Java3D显示它时,这就是我得到的:
为什么我的纹理没有出现在java中?这是我展示椅子的代码:
package com;
import java.applet.Applet;
import java.awt.BorderLayout;
import java.awt.Frame;
import java.awt.GraphicsConfiguration;
import javax.media.j3d.Alpha;
import javax.media.j3d.Appearance;
import javax.media.j3d.Background;
import javax.media.j3d.BoundingSphere;
import javax.media.j3d.BranchGroup;
import javax.media.j3d.Canvas3D;
import javax.media.j3d.DirectionalLight;
import javax.media.j3d.RotationInterpolator;
import javax.media.j3d.Transform3D;
import javax.media.j3d.TransformGroup;
import javax.vecmath.Color3f;
import javax.vecmath.Point3d;
import javax.vecmath.Vector3f;
import com.microcrowd.loader.java3d.max3ds.Loader3DS;
import com.sun.j3d.loaders.Scene;
import com.sun.j3d.loaders.objectfile.ObjectFile;
import com.sun.j3d.utils.applet.MainFrame;
import com.sun.j3d.utils.geometry.ColorCube;
import com.sun.j3d.utils.universe.SimpleUniverse;
public class LoadAnObject extends Applet
{
public LoadAnObject()
{
setLayout(new BorderLayout());
GraphicsConfiguration config = SimpleUniverse.getPreferredConfiguration();
Canvas3D canvas = new Canvas3D(config);
add("Center", canvas);
BranchGroup content = getScene();
content.compile();
SimpleUniverse universe = new SimpleUniverse(canvas);
universe.getViewingPlatform().setNominalViewingTransform();
universe.addBranchGraph(content);
}
public BranchGroup getScene()
{
BranchGroup group = new BranchGroup();
Loader3DS loader = new Loader3DS();
Scene scene = null;
try
{
scene = loader.load("/Users/John/ArtOfIllusion/Chair.3ds");
}catch(Exception e){e.printStackTrace();}
TransformGroup rotateGroup = new TransformGroup();
Transform3D rotate = new Transform3D();
rotate.rotX(- Math.PI / 8);
rotateGroup.setTransform(rotate);
rotateGroup.addChild(scene.getSceneGroup());
TransformGroup objSpin = new TransformGroup();
objSpin.setCapability(TransformGroup.ALLOW_TRANSFORM_WRITE);
//objSpin.addChild(new ColorCube(.5));
Alpha rotationAlpha = new Alpha(-1, 4000);
RotationInterpolator rotator = new RotationInterpolator(rotationAlpha, objSpin);
BoundingSphere boundSphere = new BoundingSphere(new Point3d(0.0f, 0.0f, 0.0f), 200);
rotator.setSchedulingBounds(boundSphere);
objSpin.addChild(rotator);
objSpin.addChild(rotateGroup);
TransformGroup moveGroup = new TransformGroup();
Transform3D move = new Transform3D();
move.setTranslation(new Vector3f(0.0f, 0.0f, -20.0f));
moveGroup.setTransform(move);
moveGroup.addChild(objSpin);
group.addChild(moveGroup);
Background background = new Background(0.0f, 1.0f, 1.0f);
background.setApplicationBounds(new BoundingSphere());
group.addChild(background);
Color3f light1Color = new Color3f(1.0f, 1.0f, 1.0f);
BoundingSphere bounds = new BoundingSphere(new Point3d(0.0,0.0,0.0), 100.0);
Vector3f light1Direction = new Vector3f(0, 0, 10);
DirectionalLight light1 = new DirectionalLight(light1Color, light1Direction);
light1.setInfluencingBounds(bounds);
group.addChild(light1);
return group;
}
public static void main(String args[])
{
Frame frame = new MainFrame(new LoadAnObject(), 256, 256);
}
}
我使用的文件格式是.3ds,这里是我从中获取加载程序的地方:
如何让椅子的质地显示在java?
编辑:
我把我的椅子编成了.3ds文件而不是目标文件,我现在必须使用从这里得到的.3ds加载器:
代码不会改变太多,而不是使用ObjectFile我现在使用Loader3DS
所以现在显然你可以看到转移的材料,而不是纹理,我如何让纹理显示出来?
答案 0 :(得分:1)
Java显然不会加载纹理,除非它们是从图像生成的。我能够加载纹理的唯一方法是从图像映射纹理。我尝试了几种不同的格式,但我什么都没有。如果您打算在Java3D中尝试使用纹理,请确保使用图像映射纹理!!