Rendering the Light Frustum

Started by
2 comments, last by zedzeek 18 years, 5 months ago
Does anyone knows how to draw a spotlight frustrum or light frustrum? Thanks. ps. sommething like this>> Light Frustum
---------------------------- ^_^
Advertisement
1) make a projection matrix for the light with gluPerspective()

2) make a modelview matrix for the light with gluLookAt()

3) combine the projection and modelview matrices to get the clipping planes of your light's frustum.

4) get the vertices of the frustum by finding the intersection point of 3 planes

5) display the vertices with lines in opengl. You don't have to draw the up and bottom plane.
Quote:Original post by godmodder
1) make a projection matrix for the light with gluPerspective()

2) make a modelview matrix for the light with gluLookAt()

3) combine the projection and modelview matrices to get the clipping planes of your light's frustum.

4) get the vertices of the frustum by finding the intersection point of 3 planes

5) display the vertices with lines in opengl. You don't have to draw the up and bottom plane.


Thanks I will give it a try!.



---------------------------- ^_^
multiply the 8 verts of a box (-1,-1,-1)->(1,1,1) by the inverse of the matrix resulting from the lights proj*mv (or u might wanna inverse them first)

This topic is closed to new replies.

Advertisement