kaolin icon indicating copy to clipboard operation
kaolin copied to clipboard

Update intrinsics_ortho.py: fix orthographic projection matrix

Open Ligo04 opened this issue 1 year ago • 0 comments

Fixes projection_matrix function in intrinsics_ortho.py:

  • Use the top, bottom, right, left formula for orthogonal projections

    top = 1.0
    bottom = -top
    right = 1.0 * self.width / self.height
    left = -right
    

Ligo04 avatar Mar 14 '24 07:03 Ligo04