Part of the Khronos Group
OpenGL.org

The Industry's Foundation for High Performance Graphics

from games to virtual reality, mobile phones to supercomputers

Page 1 of 2 12 LastLast
Results 1 to 10 of 17

Thread: Possible error in shadow volume paper

  1. #1
    Senior Member OpenGL Pro
    Join Date
    May 2001
    Location
    The Round Table at Camelot
    Posts
    1,537

    Possible error in shadow volume paper

    I was looking through the new shadow volume paper this morning and i noticed something that didnt look right. At the part where it shows some code that puts all the values into a matrix for the Pinf matrix is not correct. For example; the code part that says: Pinf[3][2] = -2*near. That is not right b/c if you look at row 3 (the fourth row) and column 2 (3rd column) in the previous page in the Pinf matrix you will see that [3][2] is actually -1. Another example is where they say: Pinf[2][3] = -1. If you go back and look at the Pinf on previous page [2][3] actually has -2*near.

    There are many more mistakes like this i dont want to list them all. This was kinda confusing b/c i know that in C/C++ in 2dim arrays you access them by [row][column] and knowing this, this does not follow what was done in this paper. I know that opengl matrices are ordered differently than how C organizes arrays in memory but in this case that doesnt matter.

    Oh, BTW, kinda getting off my subject here but i have been searching around google and opengl.org and i cant seem to find anything that says why for example in Pinf[0][0] they use cot(fov)/aspect. [0][0] in the regular proj matrix is (2*near)/(r-l). I cant seem to figure out why that is cot(fov)/aspect. Ya that not may be very advanced but its bugging me. I just cant find anything that talks about that.

    -SirKnight
    -SirKnight

  2. #2
    Advanced Member Frequent Contributor
    Join Date
    Feb 2000
    Posts
    662

    Re: Possible error in shadow volume paper

    There are correct. Remember that opengl is COLUMN major.

    so p[3][2] is 4th column, 3rd row.

    For your 2nd question, I believe it is a typo. They mean atan.

    cotangent = 1 / tan x

    Well it is actually a fight between different language( mainly french and english ).

    But, anyway if you knew they meant atan, then they are simply using the gluPerspective( where you pass a field of view and the aspect of the screen) interface instead of glFrustum interface( where you give, right, left, top, bottom ).



    [This message has been edited by Gorg (edited 03-25-2002).]

  3. #3
    Senior Member OpenGL Pro
    Join Date
    May 2001
    Location
    The Round Table at Camelot
    Posts
    1,537

    Re: Possible error in shadow volume paper

    Oh silly me. I see what i was doing. I was looking at the printout of how the matrix looks on that page and trying to convert it straight into C code as it is shown. I just figured that how they had the matrix typed out was setup as how C makes 2dim arrays. But even if i put all of that into a 2dim array the 'C way' all i would have to do is do a transpose so opengl would like it.

    O well, simple mistake.

    Now that, that is out of the way i see something else in here that is wierd. The parts of the matrix that says:
    (R+L)/(R-L) and (T+B)/(T-B) is assigned a 0 in the c code on page 5. Which is Pinf[2][0] and Pinf[2][1] (in opengl's column major form). Why is this like that?

    -SirKnight
    -SirKnight

  4. #4
    Advanced Member Frequent Contributor
    Join Date
    Feb 2000
    Posts
    662

    Re: Possible error in shadow volume paper

    I said a load of crap in my earlier post :

    Their cotangent is 1/tan. cotangent of angle won't help you very much !

    So let's start over :

    1. [2][0] and [2][1] are 0, because in their matrix, just like with gluPerspective, right == - left and top == -bottom.

    So right + left == 0 and top + bottom == 0

    2. cotangent business, if you draw on a sheet of paper near with top and the angle theta(the angle is in the y axis that is why you use top), you will see that tan(theta) = top / near

    And since we give an aspect which is the proportion of the screen, we get right*aspect = top

    Now, we need to prove that

    cotangent(theta) / aspect = 2 * near / ( right - left )

    tan(theta) = top / near ==> cotangent(theta) = near / top
    so we get :

    near / top / aspect = 2 * near / ( right - left )

    since right * aspect = top ==> top / aspect = right

    near / right = 2 * near / ( right - left )

    Great, now since right == -left, we get right - left = 2 * right

    near / right = 2 * near / ( 2 * right )

    And so the 2 terms are equivalent.

    You can do the same proof for [1][1]


    [This message has been edited by Gorg (edited 03-25-2002).]

  5. #5
    Senior Member OpenGL Pro
    Join Date
    May 2001
    Location
    The Round Table at Camelot
    Posts
    1,537

    Re: Possible error in shadow volume paper

    Aaahhhhhhh. I understand now methinks. Earlier i was trying some stuff on paper but i was just confusing myself. Now i see what i was doing wrong. Thanks.

    -SirKnight
    -SirKnight

  6. #6
    Senior Member OpenGL Pro
    Join Date
    May 2001
    Location
    The Round Table at Camelot
    Posts
    1,537

    Re: Possible error in shadow volume paper

    Oh one more thing. Should i only use this Pinf matrix when i draw the volumes or should it be used through out the whole program? Something like this:

    Draw some stuff with normal P matrix
    Push P
    Load Pinf
    Draw shadow volumes
    Pop P (now we have old regular P again)
    Draw other stuff

    Or will that cause some bad invariance problems?

    -SirKnight
    -SirKnight

  7. #7
    Advanced Member Frequent Contributor
    Join Date
    Feb 2000
    Posts
    662

    Re: Possible error in shadow volume paper

    You can draw geometry with a different view matrix than the view volume, you won't have invariance problems.

    Invariance problems only occur if you want to exactly redraw the same geometry in the same spot. Obviously this is not the case with shadow volumes.

    Remember that there is a loss of precision with Pinf.

  8. #8
    Senior Member OpenGL Pro
    Join Date
    May 2001
    Location
    The Round Table at Camelot
    Posts
    1,537

    Re: Possible error in shadow volume paper

    Ok thats what i thought but i had a little doubt that bugged me.

    -SirKnight
    -SirKnight

  9. #9
    Advanced Member Frequent Contributor
    Join Date
    Jun 2001
    Location
    Denmark
    Posts
    748

    Re: Possible error in shadow volume paper

    SirKnight,

    You'll have to use the same matrix for all your geometry ( shadow volumes or not ). If you use Pint for the volumes and Pother for the rest, you _will_ get artifacts.

    [This message has been edited by PH (edited 03-25-2002).]

  10. #10
    Advanced Member Frequent Contributor
    Join Date
    Feb 2000
    Posts
    662

    Re: Possible error in shadow volume paper

    Originally posted by PH:
    SirKnight,

    You'll have to use the same matrix for all your geometry ( shadow volumes or not ). If you use Pint for the volumes and Pother for the rest, you _will_ get artifacts.

    [This message has been edited by PH (edited 03-25-2002).]

    Really, what kind of artefact?

    I can see cases where where some geometry is at the egde of shadow volume, it might be incorrectly inside or outside, but it will only be pixel errors, at that point it does not matter.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •