Closed sholloway closed 4 months ago
The current projection pipeline is not correctly mapping to clip space on the Z-axis.
3D vertices need to go through a series of transformations.
The clip space is a 3D cube defined by it's three axes I, J, K where: Per: https://carmencincotti.com/2022-05-02/homogeneous-coordinates-clip-space-ndc/ Every vertex (x, y, z, w) has it's own clip space in which it exists. Where:
-w <= x <= w -w <= y <= w 0 <=z <= w
Resources
Summary
The current projection pipeline is not correctly mapping to clip space on the Z-axis.
Desired Behavior
3D vertices need to go through a series of transformations.
The clip space is a 3D cube defined by it's three axes I, J, K where: Per: https://carmencincotti.com/2022-05-02/homogeneous-coordinates-clip-space-ndc/ Every vertex (x, y, z, w) has it's own clip space in which it exists. Where:
Root Cause
Possible Solutions
Resources