Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I find a framework list on http://www.khronos.org/webgl/wiki/User_Contributions#Frameworks

However, what is different of them? I read some article said, WebGL is driven by low level language, WebGL Framework just make it to high level language to easy implementation.

I am already have much jQuery,jQueryUI, C# background, which one should i pick?

share|improve this question
What will you be using it for, and how much 3D experience do you have? Each library has a mixture of strengths and weaknesses. For example, GLGE is quite game-oriented, PhiloGL is for data visualisation, SceneJS is for scene graphs, three.js is more general-purpose. – Giles Thomas Mar 15 '11 at 19:47

3 Answers

up vote -7 down vote accepted

jMonkeyEngine released a new version recently, have a look here - http://jmonkeyengine.org/2011/03/13/jmonkeyengine3-sdk-alpha-4-released/

It looks pretty powerful and well optimized, and since WebGL is in it's starting phase, I doubt that you'll find something better than this. But yeah, everything depends on what you need the framework for.

share|improve this answer
Correct me if I'm wrong, but from looking at the site it seems jmonkeyengine is not a WebGL framework? – AlistairH Mar 16 '11 at 10:41
Nah, looks like you're not wrong, I saw it announced from Khronos group, and Khronos are the developers of WebGL, therefore I thought they have some kind of WebGL stuff in it. But that doesn't change the fact, that it's one of the most powerful Web Based 3D frameworks currently out there. – psycketom Mar 16 '11 at 10:52
It does not look like a WebGL framework. It would be cool though if there were editors like this one for WebGL development. – Diego Mar 21 '11 at 18:09
jMonkeyEngine is an 3D Engine based on Java / opengl (JOGL), it has nothing to do with WebGL – codymanix Apr 29 '11 at 13:03

I cannot speak from experience as I am in the same boat as you, looking for a WebGL framework to use. So far in my research of the various frameworks I'm leaning toward Three.Js

https://github.com/mrdoob/three.js/

share|improve this answer

WebGL is indeed low-level. That's not a problem if you already have the tools and functions in place to manage your scene data (meshes, materials, shaders, rendering optimizations, and so forth). It just means you need to be familiar with the graphics pipeline, how it works, how best to optimize it and what the subtle bugs and workarounds are from one video card driver to the next.

In terms of frameworks, I'm afraid I'm a bit biased, since I'm authoring one. :)

I've been putting a lot of effort into Jax ( http://blog.jaxgl.com/what-is-jax/ ) to make it as powerful, simple and flexible a framework as possible. It borrows a lot of its key concepts from Ruby on Rails, using Ruby in the background to generate and automate as much as possible. This lets the developer (you) get down to business right away, instead of fiddling with implementation details. The end result is 100% HTML and JavaScript, so there's no need to fret over compatibility. If you're up for trying something new, give Jax a shot. The link above talks more about the details, and I've recently put a "Quick-Start" page online ( http://jaxgl.com ) if you'd just like to hurry up and render something!

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.