I have been following this article on Frustum culling, and I need some help understanding the vector math behind it. More specifically, what are the vectors of ‘up’ and ‘right’ he talks about? What values do they hold? Sorry for the brief and unexciting question, but I am really stuck on this. Any help is appreciated! Thanks
Share
From the article:
upis equal to(ux, uy, uz) / ||(ux, uy, uz)||, which is just a unit vector pointing the same direction as(ux, uy, uz).It’s equal to
(ux / sqrt(ux^2 + uy^2 + uz^2), uy / sqrt(ux^2 + uy^2 + uz^2), uz / sqrt(ux^2 + uy^2 + uz^2))rightis equal toup x d. I don’t really want to expand that out.