show/hide this revision's text 4 added 63 characters in body
  • Transform x and y with respect to w and the half-width and half-height. Your x and y coordinates are now in viewport coordinates. Z is discarded, but w and 1/z is usually saved because they are needed to do perspective correct interpolation across the polygon surface. z is not linear across the surface, but 1/z is. This stage is the actual projection, because z isn't used as a component in the position any more.

    This calculates the field-of view. Whether tan takes radians or degrees is irrelevant, but "fov" angle must match. Notice that the result reaches infinity as fov angle nears 180 degrees. This is a singularity, as it is impossible to have a focal point that wide. If you want numerical stability, keep angle less or equal to 179 degrees.

  • show/hide this revision's text 3 added 490 characters in body
    The mostly used standard way to represent 2D/3D transformations nowadays is by using homogeneous coordinates. [x,y,w] for 2D, and [x,y,z,w] for 3D. Since you have three axes in 3D as well as translation, that information fits perfectly in a 4x4 transformation matrix. I will use column-major matrix notation in this explanation. All matrices are 4x4 unless noted otherwise.
    The stages from 3D points and to a rasterized point, line or polygon looks like this:

    fov = 1.0 / tan(fov/2.0tan(angle/2.0)

    After clipping, this is the final transformation to get our screen coordinates.

    /* w is scaled based on 11 instead *//* This function assumes triangles */ One checks each vector component seperately against each plane. Per-vertex data like colours, normals and texture coordinates need to be linearly interpolated for clipped edges to reflect the change. If the edge (v0,v1) is tested against the positive x plane, and v1 is outside, the interpolant becomes: (v1.x - w) / (v1.x - v0.x) I skip this stage all together to be brief. v /= v.w; /* Don't get confused here. I assume the divide leaves v.w alone.*/ i->x = (i->x * (float)width) / (2.0f * v.w) i->w) + halfWidth; i->y = (i->y * (float)height) / (2.0f * v.w) i->w) + halfHeight;
    show/hide this revision's text 2 Fixed a typo, added links.
  • Transform x and y with respect to w and the half-width and half-height. Your x and y coordinates are now in viewport coordinates. Z is discarded, but w and 1/z is usually saved because they are needed to do perspective correct interpolation across the polygon surface. z is not linear across the surface, but z/w 1/z is.

    This calculates the field-of view. Whether tan takes radians or degrees is irrelevant, but "fov" must match. Notice that the result reaches infinity as fov nears 180 degrees. This is a singularity. If you want numerical stability, keep under 120 less or equal to 179 degrees.

    If you still ponder about this, the OpenGL specification is a really nice reference for the maths involved.The DevMaster forums at http://www.devmaster.net/ have a lot of nice articles related to software rasterizers as well.

  • show/hide this revision's text 1