4. Camera Transformations (20 points)
This transformation rotate along Z axis (in NDC coordinate system) by 90 degree clockwise (look in positive Z axis)
R_relative=[[0, 1, 0], [-1, 0, 0], [0, 0, 1]], T_relative=[0, 0, 0]
This transformation move the camera along the negative Z axis (in NDC coordinate system)
R_relative=[[1, 0, 0], [0, 1, 0], [0, 0, 1]], T_relative=[0, 0, 3]
This transformation move the camera along the positive X and negative Y axis (in NDC coordinate system)
R_relative=[[1, 0, 0], [0, 1, 0], [0, 0, 1]], T_relative=[0.5, -0.5, 0]
This transformation rotate along Y axis (in NDC coordinate system) by 90 degree counter-clockwise (look in positive Y axis)
R_relative=[[0, 0, 1], [0, 1, 0], [-1, 0, 0]],T_relative=[-3, 0, 3]
|