Fix clipping and aspect ratio by implementing perspective in WebGL

Keith Peters
InstructorKeith Peters
Share this video with your friends

Social Share Links

Send Tweet
Published 8 years ago
Updated 5 years ago

In this lesson we actually handle several issues - perspective, clipping and aspect ratio. The perspective method that is used handles all of these issues.

[00:00] The next step we take is going to handle several issues, aspect ratio, clipping, and maybe most importantly perspective. First let's take a look at the issues themselves. When we initialize webgl we're given a viewport. Up until now the viewport has been the size of the canvas, which happens to be square, 600 by 600 in our examples. Remember that the default webgl coordinate system goes from -1 to +1 on the x and y axes, also forming a square, so that works out.

[00:32] But let's see what happens if we change the size of the canvas. I'll do that here in the JavaScript just before setting up the webgl context. First I'll change the height to 200, then I'll change the width instead. You see what's happening is the coordinate system is still going from -1 to +1 on each axis, but since the canvas is no longer square, things are getting squished. It would be nice to be able to set the canvas to any size and have the coordinate system just adjust. Then there's the problem of clipping.

[01:07] You might have seen bits of this in the example with the random-colored triangles, but let's make it more obvious here. At the end of createVertices, I'm going to translate the whole model by calling mat4.translate, passing in the main matrix and an array of x,y,z translations. I'll just move it a bit closer to us on the z-axis. Now you can see that when the triangles get a bit close to us, the disappear. If we push the model out a bit away from us, you see that they also disappear when they get too far away.

[01:40] This is called clipping. By default webgl will only render objects between -1 and +1 on the z-axis. You're probably going to want to have things appear outside of that range sometimes. As a quite note, earlier I said that the z-axis in webgl extends positively towards us, and negatively into the distance. What we just did seemed to negate that. Don't worry about it for right now, once we apply the fix we're about to do, it will put that right too.

[02:08] Finally, this is a bit more subtle here, but we really don't have any perspective going on here. The triangles in the back are the same size as the triangles in the front. You have to pay attention to which ones are overlapping with the other ones to make sure you're seeing it right. The act of turning a three-dimensional model into a two-dimensional image is called projection. By default webgl uses orthographic projection, which will not scale things down as they go into the distance, or up as they come closer to the viewer.

[02:38] What we want is perspective projection, which does do that scaling. All three of these issues are handled by supplying another matrix to the vertex shader. I could go into all the matrix math that makes this possible, but if you're using a webgl-specific matrix library such as glMatrix like we're using here, you will likely have a method that will construct this special matrix for you. glMatrix has a function called perspective that does just this.

[03:05] The strategy is going to be make a new matrix called perspectiveMatrix, configure that using glMatrix, and pass it to the vertex shader. Down at the bottom of createVertices again, I'll first create an identity matrix using mat4.create. Then I'll call mat4.perspective. First we want to pass in the matrix we just created, this will be transformed in place. Then we need a field of view. This is based on an angle of the y-axis. This picture may help, you're the viewer on the left looking at the scene on the right.

[03:44] The field of view is represented by that angle. A wider field of view is exactly like a wide-angle lens on a camera. You can see a lot more of the scene, and the perspective scaling effect is a lot stronger. A very wide field of view gives you the kind of distortion you see in a fish-eye lens. A narrower field of view lets you see less, but decreases the perspective effect, this is like a telephoto lens. You'll often see this in photos of baseball games where the batter appears the same size as the pitcher, even though the batter is much further away.

[04:18] Field of view is an angle in radians, we'll just say 1 for now. We've fixed our perspective now. The next parameter is aspect ratio. This is the width of the viewport divided by its height. Since we're using the full canvas, we can pass in canvasWidth/canvasHeight. This will allow us to change the canvas size without distortion. The final two parameters are near and far. Consider that your eyes are at point 0you want to be able to see things just in front of you, up to some further distance away from you.

[04:53] So we'll say 01 for near, and 10 for far. This will prevent clipping in our current scene. We have our matrix and we'll pass it to the shader, we'll get a uniform location for a uniform name perspective matrix which we'll need to create in the shader. We'll pass it to the shader with glUniformMatrix4fv like we did with the other matrix, and we're done with the JavaScript code. Over to the shader. We'll create the new uniform mat4 perspective matrix. In the main function we'll just add that to the multiplication that we're already doing.

[05:38] Matrix multiplication can seem like magic sometimes. We'll test it, all right, that's very different. Perspective matrix has put us right in the center of the coordinate system, 000So the triangles are kind of rotating around us now. But you can see that we definitely have some perspective going on. We already have this translate code in here, so let's just push the matrix out two units ahead of us. See now that -2 does move the model into the distance as I originally said it should.

[06:09] Now look at the size of the triangles, the ones farther away are definitely smaller. So we've handled perspective, how about clipping? I'll move things out to 5, looks OK, 9, all good, 10, we're at the far edge of the clipping range so anything that goes beyond 10 is now being clipped. If we go up and change our value to 11, we're back in business. Let's take a look at the field of view. I'll bring that down to 02, a very narrow field of view. You can see that this has pulled everything right up close, just like a telephoto lens would.

[06:52] Notice that the far triangles are nearly the same size as the near ones, less perspective. Now let's change field of view to 3. That's almost 180 degrees, super wide. Notice that the model is so small that it's barely visible. I'll change the translation and bring it up to -1, so close that we're actually getting some clipping on the near triangles. But look at that exaggerated perspective, just like a fish-eye lens. The last issue we want to verify is the aspect ratio, so I'll set field of view back to 1, and zTranslation to -2, so the ring pretty much fills the canvas.

[07:31] Now if I go up into initGL, and change the height of the canvas to 200, you'll see that the ring still fits in the canvas, it's shrunken down, but it's not all distorted, the aspect ratio is correct. Now if I change the width instead to 200, we get something totally different. Remember that the field of view is keyed to the y-axis, so the ring is still filling the canvas from top to bottom, can't see much on either side, but we don't have any distortion.

[08:05] As you can see, this one perspective method does all kinds of stuff for us, and is probably one of the hardest working single lines of code in the program. Be sure to experiment with this extensively to get a good idea for all of what it does.

egghead
egghead
~ 47 minutes ago

Member comments are a way for members to communicate, interact, and ask questions about a lesson.

The instructor or someone from the community might respond to your question Here are a few basic guidelines to commenting on egghead.io

Be on-Topic

Comments are for discussing a lesson. If you're having a general issue with the website functionality, please contact us at support@egghead.io.

Avoid meta-discussion

  • This was great!
  • This was horrible!
  • I didn't like this because it didn't match my skill level.
  • +1 It will likely be deleted as spam.

Code Problems?

Should be accompanied by code! Codesandbox or Stackblitz provide a way to share code and discuss it in context

Details and Context

Vague question? Vague answer. Any details and context you can provide will lure more interesting answers!

Markdown supported.
Become a member to join the discussionEnroll Today