Tagged Questions
Java 3D is a scene graph-based 3D application programming interface (API) for the Java platform. It runs atop either OpenGL or Direct3D.
8
votes
1answer
93 views
Combine Java Swing and Java3D: performance problems with concurrency
I am combining Swing and Java3D together. Manipulations of swing components should be done using the Event Dispatcher Thread, while manipulations of Java3D components should be done in the ...
8
votes
3answers
555 views
Is it possible to run Java3D applications on Nvidia 3D Vision hardware?
Is is possible to run a Java3D application on Nvidia 3D Vision hardware?
I've got an existing Java3D application that can run in stereoscopic 3D. In the past, I've always run the application on ...
6
votes
1answer
347 views
How can I make Java3D start faster?
My application takes several seconds to show the first window with a Canvas3D in it. I've profiled it and found that the bottleneck is in SimpleUniverse.getPreferredConfiguration(); the first call ...
5
votes
1answer
963 views
What's the future for Java 3D?
Time ago I read about Java 3D integration into Java FX, the article reported the main Java 3D project as "dead" for rewriting the 3D engine into FX.
5
votes
1answer
2k views
Simple transparency example not working in Java 3D
I'm a complete n00b in j3d (but an expert in Java). Just starting out, I'm running into a problem playing with transparency. I've got a simple example which draws a rotating planar quad (disappears ...
4
votes
1answer
173 views
Java3D stuttering issue with Swing tooltips
A Java project I am working on is having a bizarre conflict between Java3d and Swing tooltips.
Our program is setup with a Java3D Canvas3D in the center surrounded by Swing JComponents (buttons, ...
4
votes
1answer
371 views
Drawing unobscured health bars in a Java 3D scene
So I'm working on a game in Java 3D and I'm implementing health bars that hover above units.
I started by drawing a quad at a 3D point above the unit's location and applying a Billboard behavior to ...
4
votes
3answers
265 views
Creating 'laserlights' with Java3D/other 3D API
Yesterday I decided to start my new simulator project with Java and Java3D. Since I already programmed Java before it was a big plus and I could directly start with the simulator. Now I was a bit ...
4
votes
1answer
2k views
Rotating the viewing platform in Java3d
The following code puts a cube at (0, 0, 0) and another at (0, .5, .5) and each cube is (.5, .5, .5) in dimension. I'm trying to rotate the view that the screen gets to one like this but instead I ...
4
votes
1answer
922 views
How to draw a 2d overlay on a Java 3d scene?
I have a scene written in Java 3d, where the user's viewing position is set to some coordinate using the following code:
ViewingPlatform vp = simpleUniverse.getViewingPlatform();
TransformGroup ...
3
votes
1answer
100 views
Accessor method visible under Windows, Linux, but not OS X
Trying to build against javax.vecmath using the 1.5.2 jar file (found on Java.net http://java3d.java.net/binary-builds.html, for example).
Try to make a call on, say Point3d;
public class Foo {
...
3
votes
1answer
79 views
Losing rotation in Java3D when trying to animate
I have created a Cylinder and rotated it so it lies on its side. This works fine.
However I'm now trying to add some animation to it. I have coded the animations with a PositionInterpolar, and it ...
3
votes
5answers
112 views
Java - is there any multiplatform 3D API?
I just want to ask, I am new to Java and I would like to make some real-3D and multiplatform application. From beggining, I only liked java becouse of its multiplatformness. But when it comes to 3D, I ...
3
votes
1answer
225 views
How to calculate area of contact of one rectangular cuboid to its adjacent cuboids
I'm trying to position different-sized rectangular cuboids next to each other such that the area of contact between those is maximized.
In a brute-force kind of way I'm searching for a possible ...
3
votes
2answers
186 views
How to write text on a texture using java3D API?
I'm wondering how I can write some text on a given texture (during execution) ?
I'm using the java3d API.
Thanks !
3
votes
3answers
466 views
Java3D: Tutorials, Projects, General 3D Programming
I've been thinking about playing with Java3D. But first I would like to know if anyone has done much with it? What types of projects have you done and what tutorials/examples/guides did you use to ...
2
votes
0answers
40 views
State-based undo in Swing/Java3D application: AOP solution?
I am in charge of maintenance of an old application written in Swing, combined with a CAD-like tool written in Java3D. We are having problems with memory usage. After profiling, this is related to the ...
2
votes
4answers
130 views
How to pause and resume a simple game in Java
i made simple game by java , it's about "tennis background" and "tennis ball" , and the ball is randomally move automatically ,
my game consist of two file , 1st file fore Jpanel , and 2nd file for ...
2
votes
4answers
242 views
Alternative to Java3D
Colleagues of mine are using Java3D for visualizing results of finite element simulations. The problem is that Java3D seems to be somehow dead, and it is a pain on OSX. This is one of the reasons we ...
2
votes
2answers
169 views
javac can't find jar files that have been installed in jre/lib/ext
I want to try out the Java3D library and have used the installer to auto-install them for me (I'm running windows). I was using Elipse and noticed that it couldn't find the packages. I tried compiling ...
2
votes
1answer
150 views
Redirecting Swing mouse events
I am trying to make it possible to display and interact with Java Swing components on top of a Java3D canvas. I am displaying the components by painting a transparent JPanel to a buffered image, and ...
2
votes
1answer
558 views
Translate Java 3D coordinates to 2D screen coordinates
I'm working with a Java 3D application called "Walrus" that is used to display directed graphs. The code already has a feature to highlight a node and draw label adjacent in graph given its screen ...
2
votes
1answer
1k views
Problem using JNLP to launch applet with Java3D dependencies
As title says currently trying to use JNLP as a means of launching an applet with Java3D dependenices for any user who may not have Jave3D installed on their system. Unfortunately getting an error to ...
2
votes
1answer
195 views
How to extrude a shape to a volume
I am currently trying to show a series of images that slightly differ from each other in a 3D view, and which contain lots of transparent areas (for example, points that move in time inside a ...
2
votes
2answers
207 views
Trying to create spinning propeller. Keeps spinning around origin, not itself
I'm trying to create a spinning airplane propeller in Java 3D. At the moment, it is rotating around the origin. However, I need it to rotate around itself. I haven't done much 3D graphics in Java, so ...
2
votes
1answer
188 views
Memory Efficient implementation of corner point grids in Java3D/OpenGL
Say I have NX*NY*NZ cells in a corner-point-grid. I have also a mask of NX*NY*NZ booleans that gives me which cells of the grid I have to draw.
I would like to create an efficient indexed quad array ...
2
votes
0answers
278 views
Java 3D Canvas To Virtual World Mapping
I have a 3d Scene set up and can navigate my scene etc (I am fairly experienced in Java 3D) but i still need ways to achive the following operations in Java 3D:
-map the viewing area of my Canvas3D ...
2
votes
1answer
183 views
how to see oneself edges using java3d transparency
When setting an object's transparency on in Java3D, I cant see the other objects through that object but I can't see this very object geometry through it. Is that possible ?
(example: I have a ...
2
votes
1answer
838 views
Java3D: Painting 2D HUD over a Canvas3D
I'm using Java3D to render a three-dimensional scene. I would like to overlay a two-dimensional "heads-up-display" on top of the 3d image. How can I efficiently paint the 2d content on top of the 3d ...
2
votes
2answers
361 views
Java 3D Memory Leak
I have a large scene graph in Java 3D consisting out of a Group which contains around 3500 Switches, each containing a Shape3D and a Group, the latter contains two more Shape3Ds.
The reason for this ...
2
votes
3answers
544 views
Data display with 3d graphs in Java?
Can you please recommend a library that can draw a simple (see the image) 3D graph in Java?
The library should comply with the following requests:
it has to be freely available for ...
2
votes
2answers
336 views
Java3d + osx + netbeans
I have a java3d project that was developed on solaris that I am trying to move onto my macbook for a variety of reasons (1 being that our solaris machines are painfully slow).
Basically what I want ...
2
votes
1answer
636 views
Attach an object to the view platform in Java3D
In my Java3D application, I have a movable viewing platform (thanks to "OrbitBehavior" and "KeyNavigatorBehavior" behaviors for example) so I can change my point of view to the scene.
Now, I would ...
2
votes
1answer
313 views
How to set capabilities of a universe in Java 3d?
How can I set the bounds on a SimpleUniverse instance created with a canvas3d object?
I tried the code below, but I get either a "Capability not set exception" if I try to set the bounds and a ...
2
votes
2answers
866 views
Is there a good 3d software renderer for Java?
I have a PC with a good CPU but slow GPU (integrated graphics card). I have noticed that some commercial games work much better using their software renderers instead of OpenGL or DirectX. I am making ...
2
votes
4answers
288 views
Virtual 360º, stitching and presentation software, for use on PHP driven website?
EDITED (after 1st answer):
Can anyone help by pointing to some good references for the creation and presentation of a 3D environment (a real room) on a website.
Ideally it will not involve too much ...
1
vote
0answers
21 views
Java3D universe size is too small to fit object
The default universe bounds are x=[-1 meter,1 meter], y=[-1,1] and z=[-1,1]. When objects intersect these bounds they are rendered only partially. How can I set another universe size?
1
vote
2answers
74 views
Mapping different colors to points on a plane in Java3D
I am trying to write a Java3D application which emulates the what you would see on a spectrogram such as this: http://en.wikipedia.org/wiki/File:Spectrogram-19thC.png. My main difficulty right now is ...
1
vote
3answers
58 views
How to reset mouse rotation in Java3D?
I am writing a Java Applet sing Java3D and would like to reset the rotation of mouse in MouseRotate behavior when a button is clicked. The relevant codes are as follows:
BoundingSphere bound =
...
1
vote
1answer
43 views
Java3d: How to edit a drawn 2d overlay on a Java 3d scene?
I used the technique answered this question: Java3D: Painting 2D HUD over a Canvas3D
And my code is something like this:
...
GraphicsConfiguration config = ...
1
vote
1answer
35 views
Using Java3D in eclipse plugins
I'm going to develop an Eclipse plugin for my work and I'm wondering if it is possible to create a view with a 3D canvas made through a 3D library like Java3D or JMonkeyEngine.
If it's possible can ...
1
vote
2answers
60 views
Wobbly frames & windows in Java Swing?
I was wondering if it's possible to implement Compiz's wobbly windows graphic effect (deforming a window while moving it using the mouse cursor) in Java Swing, using Java2D or Java3D. Has anyone ...
1
vote
2answers
60 views
Can I use Point Sprites in Java3D?
It looks like native support for Point Sprites was planned, but never got implemented in Java3D.
Point Sprite RFE
Short of adding it to the source code and compiling my own version of Java3D, is ...
1
vote
1answer
33 views
Translation position of an object only visible in the -1.0 to +1.0 range in Java3D
I have a tiny little program in Java which supposed to display 2 spheres. It works fine until I the translation of a sphere gets out of the range of -1.0 to 1.0, the object in this case will ...
1
vote
0answers
125 views
Java3d: Texture is not applied to OBJ model properly
I load a 3d model of a torus (obj file) into my program, using these lines:
Shape3D torus=null;
Scene t1 = getSceneFromFile("Some local path\torus.obj");
Then I grab the model from the scene using ...
1
vote
1answer
40 views
Flipping the View horizontally - How?
I am very new to Java 3D. Recently I've found that all of my scene objects are in left-handed coordinates, but Java 3D uses right-hand coordinates. There is a solution: flipping the scene Z-axis and ...
1
vote
0answers
79 views
How to use the RotationInterpolator to project one line (vector) onto another?
I try to rotate a vector A onto another vector B (which have the same base point and are both of length 1) via a RotationInterpolator. Somehow I never can figure out the correct TransformAxis to do ...
1
vote
1answer
71 views
java3d eclipse problem on mac
Part of the responsibilities of my job is maintaining an old java application that was developed by my predecessor. I am a php developer with minimal java skills. The java application is developed ...
1
vote
1answer
42 views
Changing Pivot Point in Java3D
I've imported some 3d models in java3D and I want to change the pivot point of my model from the origin to a specific point!
Please don't say to translate to origin, rotate and then translate back
I ...
1
vote
1answer
353 views
Rotate vector using Java 3D
I'm attempting to use Java3D to rotate a vector. My goal is create a transform that will make the vector parallel with the y-axis. To do this, I calculated the angle between the original vector and ...