<<< Frustum clipping (clip space)     Index     NDC transformation >>>

25. Normalized device space


Upon exiting the clip space,
  1. all four coordinates (x, y, z, w) are divided by w

    
        -1.0 <= x <= +1.0
        -1.0 <= y <= +1.0
         0.0 <= z <= +1.0
                w = 1.0
    
    
  2. Everything inside the NDC space is shown on screen.

     


<<< Frustum clipping (clip space)     Index     NDC transformation >>>