Bonjour;
Pour de charger un fichier VRML(.WRL) avec java3D, j'ai utlisé le code suivant :
Citation :
import com.sun.j3d.loaders.vrml97.VrmlLoader;
public class MyLoaderVRML extends JFrame {
public MyLoaderVRML ( ) {
BranchGroup scene = loadScene();
}
public BranchGroup loadScene ( ) {
BranchGroup rootBG = new BranchGroup ( );
VRML97Loader loaderVRML = new VRML97Loader();
Scene theScene = null;
theScene = loaderVRML.load("test.WRL" );
Node forme = theScene.getSceneGroup();
root.addChild(forme);
return root;
}
public static void main(String args[]) {
new MyLoaderVRML ();
}
}
|
et ça donne des erreurs :
Citation :
package com.sun.j3d.loaders.vrml97 does not exist
cannot find symbol class VRML97Loader
|
il parait qu'il ne retrouve pas le VRML97Loader, pourtant j'ai installé Xj3d et le ficchier 'VRML97Loader.jar' existe aussi.
je serai trés reconnaissante si vous pouvez m'aider
Message édité par SSLOPEN le 17-10-2008 à 21:51:03