Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What's the future for Java 3D?

Tags:

java

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.

like image 789
Steel Plume Avatar asked Apr 12 '09 02:04

Steel Plume


People also ask

Is Java good for 3D graphics?

It provides a high-level, object-oriented view of 3D graphics. Java 3D accomplishes this in part by using a scene graph-based 3D graphics model. (We'll discuss this concept in more detail later in the article.)

Is Java good for 3D rendering?

Java uses something called application programming interface or Java 3D API, which gives the programmers a variety of tools to create and build 3D models, as well as huge world environments that can be created thanks to the great possibilities of world rendering of Java.


1 Answers

Sun has stated that they are no longer focusing on improvements to the Java3D API. The official announcement is at:

https://java3d.dev.java.net/servlets/NewsItemView?newsItemID=5689 http://forums.java.net/jive/thread.jspa?threadID=36022

As you can see, Sun itself is shifting their focus to a new 3D scenegraph API that will ultimately be a part of JavaFX.

Otherwise, there are numerous high-quality 3D APIs available for Java (eg, JMonkeyEngine or Ogre3D), or you can always use lowlevel APIs such as JOGL and LWJGL.

like image 86
jsight Avatar answered Sep 24 '22 22:09

jsight