Shaohua Liu

Results 3 comments of Shaohua Liu

> 1. yes culling is done during rasterization > 2. z values are in euclidean space > 3. `screenspace_points` is passed to `rasterizer` function which fills this variable with the...

getProjectionMatrix is used to project the 3D point from the camera view space to NDC space,maybe you can refer to https://www.scratchapixel.com/lessons/3d-basic-rendering/perspective-and-orthographic-projection-matrix/building-basic-perspective-projection-matrix.html to learn more

> > getProjectionMatrix is used to project the 3D point from the camera view space to NDC space,maybe you can refer to https://www.scratchapixel.com/lessons/3d-basic-rendering/perspective-and-orthographic-projection-matrix/building-basic-perspective-projection-matrix.html to learn more > > I have...