Q1.1: 360 degree render

Alt Text

Q1.2: Dolly Zoom

Alt Text

Q2.1: Constructing a Tetrahedron

Alt Text

Q2.2: Constructing a Cube

Alt Text

Q3: Re-texturing a mesh

Alt Text

Q4: camera transform

Fig.1 - Camera rotate 90 degree.

a = -90/180*np.pi
Rs = [[np.cos(a), -np.sin(a), 0],
    [np.sin(a), np.cos(a), 0],
    [0,0,1]]
Ts =  [0,0,0]

Fig.2 - Camera scale change.

Ts =  [0,0,2]
Rs = [[1, 0, 0],
      [0, 1, 0],
      [0, 0, 1]]

Fig.3 - Camera translate to upper right.

Ts =  [1,-1,0]
Rs = [[1, 0, 0],
      [0, 1, 0],
      [0, 0, 1]]

Fig.4 - Camera transform to right.

b = 90/180*np.pi
Ts = [-3,0,3]
Rs = [[np.cos(b), 0, np.sin(b)],
      [0, 1, 0],
      [-np.sin(b), 0, np.cos(b)]]

Q5.1

Alt Text

Alt Text

Alt Text

Q5.2

Alt Text

Q5.3

Alt Text

Q6

Alt Text