java-3d Questions

6

Solved

What's the difference between a UV texture coordinate vs. ST texture Coordinate? I know that UV and ST are used in OpenGL. I also know that ST are also used in Java.
Sexlimited asked 13/5, 2012 at 0:8

3

Solved

I'm trying to flip a coloured rectangle. Is it possible to use the rotateTransition to do this? I have tried the following code: public void rotateField(){ RotateTransition rt = new RotateTrans...
Phrensy asked 10/11, 2013 at 23:26

13

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, ...
Samsun asked 4/11, 2010 at 15:18

2

Solved

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.
Morganite asked 12/4, 2009 at 2:1

4

Solved

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 Qu...
Zoie asked 10/8, 2011 at 20:12

3

Solved

So I am wanting to start playing with OpenGL with a view to implement some game ideas I have had for a long time now, but I noticed there are several versions of OpenGL. I ideally would like to su...
Triatomic asked 12/5, 2012 at 12:29

1

Solved

My problem is the difference between this: and this: I'm trying to create a nice looking solar system with Java3D but when I apply a texture the lighting effect disappears and the 3D effect (...
Gongorism asked 19/3, 2014 at 20:59

2

Solved

Is there any possible way to retrieve information of my graphic card adapter using Java API? I know that DirectX can easily do it, however, I just wonder if Java can do this...? Like picture belo...
Nadianadine asked 22/8, 2013 at 11:26

5

Solved

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); coneTransform.s...
Cajuput asked 25/8, 2009 at 20:19

2

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. Calli...
Jocularity asked 9/5, 2013 at 20:53

2

I have already set my variable paths to include the bin and lib file for j3d. When I open eclipse, I have to manually build path->configure build path->add jars and add all the .jar files for every...
Poler asked 15/12, 2012 at 20:3

2

Solved

Edit: For having real-time drawing, started using lwjgl which is base of jmonkeyengine and jocl in an "interoperability" between opengl and opencl, now can calculate and draw 100k particles real-ti...
Genuine asked 12/11, 2012 at 21:55

1

Solved

I have a cylinder of 2f length, and the data for RotX and RotZ, given by user. I also know that the "bottom" of my cylinder is at (0,0,0) (the center of the circle forming the "bottom") What I nee...
Savory asked 3/11, 2012 at 13:57

4

Solved

Lets assume your eye is in the surface point P1 on an object A and there is a target object B and there is a point-light source behind object B. Question: am i right if i look to the light source a...
Kali asked 27/8, 2012 at 11:4

3

Sorry in advance if this is a really bad question, but I can't seem to find a recent enough tutorial on how to install Java3D on Eclipse 3.6.0 for Mac OSX 10.6.6. If anyone knows where a good tutor...
Gauffer asked 10/2, 2011 at 22:32

5

Solved

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 w...
Chlorothiazide asked 7/8, 2011 at 14:16

1

Solved

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 Behaviou...
Cravat asked 13/1, 2012 at 8:34

1

I'm draving some objects on GLSurfaceArea (similar to this: http://www.droidnova.com/android-3d-game-tutorial-part-ii,328.html). It all works fine, but there are shown only points which coordinates...
Lietman asked 21/11, 2011 at 12:53

1

Solved

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 { ...
Yesteryear asked 27/5, 2011 at 16:1

2

Solved

I am following this tutorial to build my first Java 3D application. I included in my project the java3D libraries and my DllLoader class that extracts (from the classpath to the jar's location) and...
Ethiop asked 23/1, 2011 at 18:14

1

Solved

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 ...
Daunt asked 16/1, 2011 at 0:44

1

Solved

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 ...
Iconic asked 18/8, 2010 at 22:49

1

Solved

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 3...
Syllabogram asked 1/4, 2010 at 8:58

1

Solved

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 st...
Embank asked 17/8, 2009 at 21:36

1

Solved

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 ...
Valdemar asked 3/2, 2009 at 17:3

© 2022 - 2025 — McMap. All rights reserved.