Welcome to the Java Programming Forums


The professional, friendly Java community. 21,500 members and growing!


The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.


>> REGISTER NOW TO START POSTING


Members have full access to the forums. Advertisements are removed for registered users.

Results 1 to 3 of 3

Thread: Best 3D API

  1. #1
    Member
    Join Date
    Sep 2011
    Posts
    40
    My Mood
    Inspired
    Thanks
    4
    Thanked 1 Time in 1 Post

    Default Best 3D API

    Whats the best 3D API for Java? I've heard a lot about Java3D, I also hear JMonkey is good, any ideas?


  2. #2
    Super Moderator helloworld922's Avatar
    Join Date
    Jun 2009
    Posts
    2,896
    Thanks
    23
    Thanked 619 Times in 561 Posts
    Blog Entries
    18

    Default Re: Best 3D API

    Java3D is kind of deprecated (I don't think any development work has been done on it in a long time). JMonkey is actually a complete game engine, including 3D graphics, sound, and physics. The underlying graphics library utilized by JMonkey is LWJGL (The Light-Weight Java Gaming Library). Depending on what you intend to do I would recommend either using LWJGL or JOGL (Java OpenGL). Both libraries are very capable Java bindings for OpenGL with similar but slightly different goals. LWJGL aims to be a library you can use for games while JOGL is a more general purpose binding. You get slightly more control with JOGL, but it's also got a larger learning curve.

  3. #3
    Member
    Join Date
    Sep 2011
    Posts
    40
    My Mood
    Inspired
    Thanks
    4
    Thanked 1 Time in 1 Post

    Default Re: Best 3D API

    I am looking to create a game, so I guess I will go with LWJGL, I tried out JMonkey, but don't really like how I'm stuck to that IDE. I dislike it.