0
votes
1answer
18 views
Java3d resetting to a new scene
Hi all,
I'm working on a game in Java3D. I read all my level info from a file and it works fine. But now I want to re-initialize the scene from reading data from a different file. …
1
vote
1answer
55 views
Attach an object to the view platform in Java3D
Hello,
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 …
1
vote
4answers
318 views
How to rotate an object in Java 3D?
I have a Cone I drew in Java 3D with the following code:
Cone cone = new Cone(2f, 3f);
Transform3D t3d = new Transform3D();
TransformGroup coneTransform = new TransformGroup(t3d) …
0
votes
1answer
120 views
Why does my off screen rendering Canvas3D not work?
I've been trying to make off screen rendering to work, using Java3D 1.5.2. In my source code I've been trying to attach an extended Canvas3D that will do off-screen rendering to Si …
0
votes
1answer
76 views
Render to BufferedImage in Java3D
Is there a simple way of rendering to a BufferedImage in Java3D?
I know you can extend Canvas3D, but it seems cumbersome if I just want to render directly.
0
votes
1answer
131 views
How to draw a transparent plane in Java 3D?
I am trying to draw a transparent plane (X[0..100],Y[0..100],Z=0) in Java 3D, but can't figure out how. I've looked on the tutorial page and still can't find any sample programs.
…
3
votes
1answer
159 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();
…
0
votes
3answers
103 views
sites using java 3d ? ( need to develop 3d for the web )
Hello all
do you know good example of sites that using java 3d for there content ?
i need to fine some kind of 3d solution , and now only java 3d solution is the best
as i see it …
2
votes
1answer
48 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 …
0
votes
1answer
41 views
How to set ViewingPlatform and update TransformGroup?
I have a scene inside of a TransformGroup that allows the mouse to zoom/rotate/pan.
I need to set the camera position back far enough that I can see the entire scene, which I do …
0
votes
0answers
142 views
Using NetBeans IDE 6.7 with J3D’s Canvas3D Container
I keep telling myself that this should be simple, and yet I'm completely lost. Let me start by saying that I'm new to NetBeans IDE, and that I am using it out of necessity. I don't …
0
votes
2answers
207 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 …
0
votes
1answer
77 views
Java 3D: Where can I insert a “post rendering” FX?
Hi, I extended a Canvas3D and then I override the method "postSwap()", but my odd-even line effect is flickering a lot, what could be another good point for inserting this process? …
3
votes
2answers
130 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/gui …
2
votes
1answer
236 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.
