Java 3D is a scene graph-based 3D application programming interface (API) for the Java platform. It runs atop either OpenGL or Direct3D.
0
votes
0answers
10 views
Java3D: Drawing a dot on a Box
I have drawn a box in Java3D. It will be moving around and rotating. I want to draw a dot (i.e. a solid, filled circle) on one of its faces. I was thinking about using
box.getShape( sideId )
and ...
4
votes
4answers
6k views
problems with java3D lib configuration
ive ran into some trouble configuring java3D to work with my IDE environment...
I have downloaded j3d-1_5_2-linux-i586.zip, and unpacked j3dcore.jar, j3dutils.jar, vecmath.jar, libj3dcore-ogl.so, ...
0
votes
0answers
6 views
How to copy TransformGroup and other objeccts and animation java3d?
For example if I have a bouncing ball. I want to have another bouncing ball so that two balls will be bouncing at the same time.
1
vote
0answers
21 views
I need to draw 3D Polygon in Java with different colors
I want to create a Java3D polygon or any Java3D object which has mutiple colors. If we draw a polygon it use to draw it with only one color. I want to set different color for each edge.
3
votes
1answer
156 views
Problems with Applets that contains Java3d in Mac OS Lion and Snow Leopard
i am using Mac Lion OS, and when i use applets with java3d components, graphics are not displayed, however after you "travel" with a Terminal Window (for instance) in front of the browser where the ...
1
vote
1answer
24 views
JOGL throwing ClassNotFoundException?
I've seen this question brought up a couple of times on this website, but never really seen a clear answer, so excuse me from repeating it. While programming with JOGL and Java3D I've encountered some ...
1
vote
1answer
160 views
How to use MouseListener and MouseMotionListener in java3D to rotate 3D object?
I m making desktop app in java swing. i made 3D image from my 2D image using PointArray[]. now i want to rotate image using MouseListener and MouseMotionListener.I used MouseRotate object to rotate ...
0
votes
1answer
15 views
Java3d viewPlateform vs viewingPlatform
I'm having trouble understanding what the difference is between the viewplateform and the viewingPLatform. Could someone please shed some light on this?
0
votes
1answer
36 views
ImageJ (fiji) compiling plugin
I am developing a plugin for ImageJ (fiji), I followed this tutorial to configure fiji for eclipse.
http://fiji.sc/wiki/index.php/Developing_Fiji_in_Eclipse
Now I am working with the 3D ImageJ Suite ...
0
votes
0answers
17 views
Model analyzing in Java 3D
In Java3D application I have two planes. How can I find if they have an intersection and if they do what is the angle between these planes? And how to resolve the vector of their intersection?
-1
votes
0answers
27 views
Is there any support of STL and OBJ files in Java?
Is it possible to process with 3d models (.stl and .obj) in Java? Maybe some libraries or something else? And if it's possible - how to modify them and perform mathematical calculations, such as angle ...
0
votes
2answers
479 views
How to fallback to software rendering in Java3D?
We are having some weird problems using Java3D over a Windows' remote desktop. The remote machine is a virtualized server, which can't use the (physical) server's graphic card. When I run the app, the ...
2
votes
1answer
91 views
jMonkeyEngine OBJ file does not appear as expected
My Artist created a 3d shoe model as FBX in 3d studio Max . which looks as the following image.
i use jMonkeyEngine in my Program, and it does not support FBX file so i export FBX to wavefront OBJ ...
0
votes
2answers
81 views
Game Loop control
i'm having a tremendous difficulty understanding a piece of code that controls a loop of a game... I can't understand the purpose of this while loop "while(unprocessedSeconds > secondsForEachTick)" ...
0
votes
0answers
39 views
Problems getting Canvas3D to repaint
I have written a small program that creates a 3D grid of Sphere objects in a 10x10x10 block in a Java3D Canvas3D object, and I want to be able to change the Appearance of each Sphere over time.
I ...