Java 3D is a scene graph-based 3D application programming interface (API) for the Java platform. It runs atop either OpenGL or Direct3D.

learn more… | top users | synonyms (1)

0
votes
1answer
30 views

Translate 3D point location to 2D point location

Below is the screenshot of the 3d object. This is a 3D Radar Chart where the depth is a time. As you see labels are spinning in 3d also, is there a way to determine just X and Y positions by looking ...
0
votes
2answers
22 views

Tool to generate parametric equations

I'm looking for a tool that allows me to create shapes (along the lines of a rendering application) which will also generate the parametric equations of the various shapes. I need to use it for some ...
2
votes
0answers
77 views
+500

java applet: jocl operations stop java3d

Jocl(opencl wrapper) kernel running makes java3d output disabled. When opencl finishes, java3d continus working. How can I let Opencl(jocl) and opengl(java3d) work together? I need some kind of ...
0
votes
0answers
27 views

3D library computable with JSF

I need to create 3D animation in my project (JSF) I am looking for a 3D free libraries which can be used in a JSF web application. The API should be computable with IE, Chrome & FF, easy to ...
1
vote
0answers
32 views

How to dynamically extend PickCanvas object for MouseListener click event in a Java Applet (using Java3D)?

I am developing a Java applet using Java3D. It starts up with a BranchGroup object (containing a set of points) which is added to a Locale object. A PickCanvas is created starting from the Locale and ...
0
votes
0answers
23 views

Animate Rotation of translated cube

Simple Question, heavy headaches... I try to animate a translated cube. Whithout animation I do on keyPressed: this = transformgroup whith my cube in it. Transform3D tf = new Transform3D(); ...
13
votes
2answers
207 views

Is there a way to terminate a java application that uses java3d, without calling System.exit()?

Java3D starts several system threads and doesn't set the isDaemon flag on them. When I dispose the (only) JFrame of my application it won't terminate because these threads are still running. Calling ...
1
vote
2answers
53 views

Java3D renders objects out of order

So, I am making a card game. I have a consistent problem where no matter what I try, java3d renders my objects wrong. Here is what I'm talking about: When the camera is looking at them from the ...
-1
votes
0answers
42 views

How to insert multi line text and images / textures in Cuboid in java3d [closed]

I am quite new to java3d. I have created a Cuboid successfully . Now, I want to print multi-line text on all sides of cuboid using java3d. Thanks in Advance
0
votes
0answers
27 views

TransformGroup rotation about an Arbitrary Axis?

I want to rotate an TransformGroup around its own or an Arbitrary Axis. TransformGroup tgcizgi; ... if(i>=180) i-=180; else i+=1; t3d.setRotation(new AxisAngle4f(0.0f,0.0f, 1.0f, ...
-1
votes
1answer
32 views

How to detect collision between Groups - Java3D

I have made a room in Java3D and added the ability for the User to move selected objects using the keyboard. I was just wondering if it would be possible to detect a collision between two of my ...
1
vote
0answers
29 views

Getting a reference to the main parent of a group - Java3D

I have the following code for capturing mouse clicks in Java3D. I am hoping to eventually be able to click on an object in my scene and move it around with the mouse. public void ...
0
votes
1answer
21 views

Disabling a PointLight throws CapabilityNotSetException

I have the following code for a light in Java3D. After my scene has been created, I have a separate thread which should turn the light off. When the my code calls: setEnable(true); I get a get the ...
0
votes
1answer
13 views

Can't zoom scroll universe java 3d without objects dissapear

Well, this is a bit annoying, when I try to zoom out, my objects start to dissapear and then go black merging with the background so I can't zoom out as much as desire, I'm using a OrbitBehavior and ...
1
vote
1answer
70 views

Texture Mapping is reversed! Java3D

I could use some extra eyes to help me see why my texture map is reversed on my object. It prints backwards -- as if seeing it in a mirror. I had suspected that maybe reversing the indices would ...
0
votes
1answer
51 views

How to distribute Java3d jar files with netbeans dist?

I have a java project on netbeans (Mac OS X) that uses Java3d. On the mac version of java distribution, java3d is already included. However now I want to distribute my application as jar for other ...
0
votes
3answers
158 views

jar file not working java.lang.NoClassDefFoundError

When I run the jar file in cmd I get this error: Exception in thread "main" java.lang.NoClassDefFoundError: javax/media/j3d/Canvas3D It happens both when I use java -cp . Main and java -jar ...
2
votes
1answer
75 views

Problems with jar file

The problem isn't creating the jar file but to make it work. Because I use Java 3D i need the jar file to get the Java 3D classes but I can't seem to get it to work. I have set up the classpath ...
0
votes
0answers
23 views

setting Java 3D classpath

When I run my jar file, nothing happens, ifI run it from cmd I get this error message: Exception in thread "main" java.lang.NoClassDefFoundError: javax/madia/j3d/Canvas3D at ...
0
votes
0answers
61 views

Use Java 3D to create non primitive (custom) 3D shapes

I am working on a 3D development project where I need to create a polygon using the pixel coordinates (Origin @ right up corner) then extrude it to create a solid. I was trying this but couldn't work ...
1
vote
1answer
55 views

Cannot get rotation working properly Java3D

public void changeAx(double value) { translateAx.set(new Vector3f(0f, -0.325f, 0f)); trans.setTransform(translateAx); rotation1.rotY(value); rotation.mul(rotation1); ...
0
votes
0answers
28 views

Merge views with OpenGL in android

If I want merge OpenGL elements and regular views. For example I want put button on GLSurfaceView, when the GLSurfaceView performing rotation the button should rotate with the GLSurfaceView. One way ...
-3
votes
1answer
29 views

Removing spheres

I have finnaly managed to make my program detect collision between two balls that I have created in Java-3D; the player ball and the enemy ball. Now the problem is that I don't know how to make the ...
-2
votes
2answers
61 views

Collision detection between spheres of non-zero radius

I'm making a Java 3D game where you're a ball that jumps on other balls. I have everything figured out except the collision between the player ball and the enemy ball. I have figured out that I could ...
1
vote
1answer
177 views

Java-3d collision detection

I have just started to use java 3-d and Im trying to make a game where you jump on enemies to get ponts. I know how to do everything for the game except the collision detection. I need the player ball ...
-1
votes
1answer
149 views

Collision detection in java-3d?

The program im making need to have one of the spheres in it being removed when another one of the spheres collides with it but I can't figure out how to do so. I have tried to use the Bounds class to ...
0
votes
1answer
23 views

Put JFrame inside Java3D scene

I would like put a JFrame (JComponent) in a Java3D scene. The JFrame have an animation and the idea is put this component like a texture in a tridimensional box. I read various articles about this ...
-2
votes
1answer
104 views

Collision detection with Java3D [closed]

In the program im making I need to have something happen when to shapes collide, the prblem is that I don't know how. I have tried to use the Bounds class to get the bounds of my shapes but that ...
0
votes
1answer
45 views

Adding a node to multiple Groups : Java3D

Well, I'm developing a application using Java3D, which can solve Rubik's cube showing the user step-step solution. I did my Algorithm part perfectly, and now the issue is with 3D cube, Till now, i've ...
0
votes
0answers
39 views

Simbad requires Java 3D

Context: MS Windows 8, jre7 preinstalled by MS Windows setup, MS Windows PATH environment variable has set to JRE7 bin folder - C:\Program Files (x86)\Java\jre7\bin, simbad-1.4.jar is downloaded ...
3
votes
1answer
109 views

How to know if a point is inside a complex 3D shape (.ply file)

I'm working on a Java project witch is really killing me. After several days of researching on different forums, looking for what I really need, I come to ask your help. My data : A .ply file ...
0
votes
2answers
143 views

Java 3d & Texture mappig

I am trying to load a 3D scene into java3D . I've tried to load my scene created in Cinema 4D in multiple formats (Obj, wrl, 3ds, x3d) but thus far I haven't been able to transport my textures with ...
0
votes
0answers
84 views

Java3D: Pick intersection point with TriangleStripArray

I'm trying to find the point of intersection between a ray line and the surrounding scene. The scene will be made up of geometry such as TriangleStripArray. The problem I'm having is that I always ...
0
votes
0answers
30 views

Making a surface reflective / mirror like in Java 3D

I've been trying to make a surface in Java 3D reflect in a similar manner to a mirror. The API says to use TexCoordGeneration in SPHERE_MAP mode, but it doesn't seem to be making any difference at ...
0
votes
0answers
28 views

Java3d - Behavior is not reciving KeyEvents

I've got some problems with reciving KeyEvents with Behavior in java3d. It's strange because the focus is set on Canvas3d object and it recives KeyEvents from ActionListener, but when I create and add ...
1
vote
1answer
97 views

Tutorial on placing a 3D cube on a GWT Canvas

Could someone point me to a tutorial on putting a cube on a GWT Canvas? I only have one sample code with Context2d and Canvas and one sample with SimpleUniverse. The latter I don't know how to ...
0
votes
1answer
51 views

Scaling unit cube in Java3d Manually

I'm working on something in Java3D and I know TransformGroups are how you would usually apply scaling... However, I am trying to create a way of defining cuboids based on a scaling vector. So I have ...
0
votes
1answer
157 views

Java3D - Some classes not found but classpath is set correctly

I have a class that uses Java3D that successfully compiles, although when I try to run it it says: Exception in thread "main" java.lang.NoClassDefFoundError: javax/media/j3d/Canvas3D, With the ...
-3
votes
1answer
112 views

How to fix this code error to play sound in java [closed]

I was experimenting with java code i got offline to play sound. I went through and tried to run the code and got this error Exception in thread "main" java.lang.NullPointerException: Canvas3D: null ...
3
votes
1answer
71 views

Correct usage of TransformGroup

I have just started a graphics assignment and this is my first use of Java3D. I have started off by attempting to build a chair (don't laugh at the following :P). I just wanted to know if somebody ...
0
votes
2answers
292 views

Exception in thread “main” java.lang.NoClassDefFoundError in Java3D

I'm trying to develop a java3d application, i try everything, i just download the jogamp-platform because how i could read in many websites the java3d is obsolete and for mac os x you need this, i put ...
3
votes
1answer
114 views

Mobius strip has a seam! Java3D

I'm creating a mobius strip in Java3D. I've got a seam and I can't seem to get rid of it! I'm assuming it's got to do with normals and the fact that the difference in angle between the conjoined ...
0
votes
1answer
195 views

Displaying 3D medical images using Java 3D

I have 3D medical image (.dcm file) with me. Working with Java 3D API in eclipse. I am unable to code to display 3D image. Please help. Thanks in advance.
1
vote
0answers
77 views

Java3D disappearance act

It seems to me Java3D has a problem redrawing the scene sometimes when the Frame/JPanel/Canvas3D has been resized. I have a problem in my application using Java3D/JUNG3D where if the ...
0
votes
1answer
16 views

GeometryArray with COLOR_3 and lighting

I'm implementing this in Java3D, but I think the question is related any implementation of 3D Graphics. I am trying to make my Shape3D be affected by light. Let me explain what I am doing and what I ...
0
votes
0answers
8 views

doesn't genstrings works for the macro with the table string of API or parameter

When I work on the localization, I use genstrings to generate the .strings file. However,genstrings doesn't work for the following macro: NSString *cancelButton = ...
0
votes
1answer
67 views

Can't get Java3D work with eclipse in Mac OS

I have actually searched but haven't found a solution in any website. I am trying to write a program in Java using Java3D in MacOS and I'm trying to use Java3D in Eclipse. I am trying to run a simple ...
0
votes
1answer
39 views

RotationInterpolator interfering with translate in java3d

I expected the following code to translate the ColorCube, and then rotate it around itself, instead it doesn't translate, it just rotates around the origin. What am I doing wrong here? import ...
0
votes
0answers
47 views

Eclipse not showing UI properly

I have transfered my eclipse project from my pc to a laptop. It is a java 3d project, and it should show the main frame with some buttons on the buttonbar at the top, and on the rest of the screen the ...
0
votes
1answer
30 views

Trailing Image in Graphics.drawImage() method

I have an image that I need to move by calling: int Y = 100; Graphics g = Canvas().getGraphics(); //Canvas is a Java 3D Canvas 3D g.drawImage(Image, 400, Y, Canvas); I also have a keylistener that ...

1 2 3 4 5 7