Name | Modified | Size | Downloads / Week |
---|---|---|---|
water1 | 2021-04-05 | ||
newobjectfile | 2020-07-05 | ||
README.TXT | 2023-11-20 | 2.9 kB | |
projet.zip | 2023-11-20 | 25.1 MB | |
dist.zip | 2023-11-17 | 37.9 MB | |
lake18.jpg | 2021-04-05 | 66.3 kB | |
license.txt | 2021-03-31 | 19.6 kB | |
Totals: 7 Items | 63.1 MB | 0 |
___________________ Installation steps: ___________________ 1 - Download dist.zip 2 - Expand file somewhere and open it. 3 - Run SceneMaker_2.jar found in /dist folder. Each frame contains a short help. optional : right click the jar and move it to desktop to get a shortcut. This software uses Java . If your system aks what software to use opening the JAR, Java is not installed. check installation here : java.com/en/ If things go wrong, Cliper starts, showing the galleon picture, but stays there, or nothing happens. (for Windows) : * Open a command window (right clic Windows icon on low left of screen) * Go to the root typing cd.. two times * Locate the Jar file, right clic to get properties menu and copy its folder address * paste it in command window and add java -jar SceneMaker_2.jar + enter. * Send ouput to aetjf.pauly@orange.fr object : cliper support. Java3D is 1.7 current version from JogAmp. File projet.zip is Cliper NetBeans project. To import in Eclipse : (from stackoverflow.com/questions/7412391/) Download the sun java toolkit or Java ME SDK 3.0 and then integrate with Eclipse. Go to the file and select the import option. import window open on the screen. Here expand the Java ME and open the Netbeans Project. Select the netbeans project root directory and click the finish button. It automatically convert netbeans project to eclipse project. File -> import -> Java ME -> Netbeans Project -> netbeans project root directory -> finish ________________ For developers : ________________ Some useful links Java3D forum : jogamp. forum.jogamp.org/java3d-f3728156.html Java 3D Programming : Daniel Selman. webserver2.tecgraf.puc-rio.br/~ismael/Cursos/Cidade_CG/labs/Java3D/ Java3D_onlinebook_selman/Htmls/Content.htm#0 Killer game Programming: Andrew Davison fivedots.coe.psu.ac.th/~ad/jg/ A folder called newobjectfile has been added. It contains a package for .obj files loading. This is the java3D files with some changes for a better rendering of models (colors and textures). To use it in your project, download this folder and do the following : 1- open your project and create a new file called newobjectfile with java package type. 2- copy files just downloaded into this new file 3- In each file replace the line package scenemakerv2.newobjectfile; by package yourproject.newobjectfile; 4- In the program where where obj files are loaded : * add this line : import yourproject.newobjectfile.NewObjectFile; * replace line : ObjectFile fObj = new ObjectFile(ObjectFile.RESIZE | ObjectFile.STRIPIFY); by NewObjectFile fObj = new NewObjectFile(NewObjectFile.RESIZE | NewObjectFile.STRIPIFY); (parameters are just an example) Note : imports statements of files are for java3D 1.7 current version from JogAmp.