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

So I'm new and starting to learn about 3D computer graphics on web browsers. I'm interested in making 3D games on a browser. For anyone who has learned both webgl or three.js...

  1. Which do you recommend that I start learning with?

  2. Are there any pros and cons to using either webgl or three.js?

Thanks everyone ^^

share|improve this question
Use Three.js. Period. It is exactly what West says below, while simple in theory, writing WebGL from scratch is a pain. There are so many things that almost every WebGL application will need / want to do. These things can be abstracted away from you. Also, Three.js has matured into an amazing library. If you check Google Trends or the number of SO Questions here you will see that it has pulled far ahead of the competition. – mattblang Apr 30 at 19:29

3 Answers

up vote 18 down vote accepted

Since you have big ambitions, you have to invest the time to learn the fundamentals. It is not a matter of what you learn first -- you can learn them simultaneously if you want to. (That's what I did.)

This means that you need to understand:

  1. WebGL concepts
  2. Three.js
  3. The underlying mathematical concepts

Three.js. Three.js does an excellent job of abstracting away many of the details of WebGL, so personally, I'd suggest using Three.js for your project. But remember, Three.js is in alpha, and it is changing frequently, so you have to be prepared for that. I think most people learn Three.js by studying the examples.

WebGL. If you use Three.js, you don't need to know how to program in WebGL, you just need to understand the WebGL concepts. That means, that you just need to be able to read someone else's WebGL code and understand what you read. That is a lot easier than being expected to write a WebGL program yourself from scratch. You can learn the WebGL concepts sufficiently well using any of the tutorials on the net, such as the beginner's tutorial at Learning WebGL.

Math. Again, you at least need to understand the concepts. Three good books are:

  1. 3D Math Primer for Graphics and Game Development by Fletcher Dunn and Ian Parberry

  2. Essential Mathematics for Games and Interactive Applications: A Programmer’s Guide by James M. Van Verth and Lars M. Bishop

  3. Mathematics for 3D Game Programming and Computer Graphics by Eric Lengyel

I hope this is helpful to you. Good luck.

share|improve this answer
2  
+1 for 3D math primer – Neil Aug 16 '12 at 8:24
what is the best site to learn about webgl concepts from start to end in easy english. Or at least whenever the author uses some 'word', he/she does so after having describe it once before so build on it. – Muhammad Umer Apr 12 at 20:27
See the link to the Learning WebGL tutorial in the body of the post. – WestLangley Apr 12 at 20:52

My personal thoughts are the following:

  • If you have plenty time, you could learn both, but note that WebGL is much lower level than Three.js.
  • For a first 3d project, experts suggest using a library like Three.js in order to get used to the terms and the general 3d model.
share|improve this answer
I agree with this. At this point it looks like it could be a good thing to have both in your toolbelt. I would start out by learning Three.JS, then do some shaders with GLSL and keep trying to learn more about WebGL all the while. – Cory Gross Aug 15 '12 at 12:08

Whichever direction you choose to go, I suggest you learn/polish up on your linear algebra skills. Then go ahead and learn or polish up your understanding about MVP dimensions (Model View Projection). Three.JD can abstract much of that away, but I think it's key that one understands those concepts well before getting serious about any 3D development.

I wrote an introductory article about MVP when I was first learning 3D programming with OpenGL. I realized that until I was able to explain what those transformation matrices are, and how they relate to the various dimensions/spaces, I really didn't know any 3D programming at all, though I could render objects to the screen.

Since your goal is to create games, I think you'll benefit much from learning some raw WebGL first, even if you end up using a framework like Three.js to help you write your code later.

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.