Problem 1

360 degree visualization

Dolly zoom

Problem 2

TetraHedron

vertices = [
        [1.0, 0.0, 0.0],
        [0.0, 0.0, 0.0],
        [0.0, 0.0, 1],
        [0.5, 1, 0.5]
    ]

    faces = [
        [0, 1, 2],
        [0, 1, 3],
        [0, 3, 2],
        [1, 2, 3]
    ]

Cube

vertices = [
        [1.0, 0.0, 0.0],
        [0.0, 0.0, 0.0],
        [0.0, 0.0, 1.0],
        [1.0, 0.0, 1.0],
        [1.0, 1.0, 0.0],
        [0.0, 1.0, 0.0],
        [0.0, 1.0, 1.0],
        [1.0, 1.0, 1.0],
    ]

    faces = [
        [0, 4, 5], [0, 1, 5],
        [1, 5, 2], [5, 2, 6],
        [6, 3, 2], [6, 3, 7],
        [0, 7, 3], [0, 7, 4],
        [0, 2, 1], [0, 2, 3],
        [4, 6, 5], [4, 6, 7],
    ]

Problem 3

I used the color mentioned in the problem description, which is

color1 = torch.Tensor([0, 0, 1])
color2 = torch.Tensor([1, 0, 0])

Problem 4

Rotation matrix.

This is the image with 90 roll.

R = [[0,-1, 0
1, 0, 0, 
0, 0, 1]]
t = [0, 0, 0]

This is the image by another translation in z direction

R = [[1,0, 0
0, 1, 0,
0, 0, 1]]
t = [0, 0, 2]

This is the image by another translation

R = [[1,0, 0
0, 1, 0,
0, 0, 1]]
t = [-0.5, 0.5, 0]

This is the rotating the camera(change the azimuth)

R = [[0,0, 1
0, 1, 0,
-1, 0, 0]]
t = [-3, 0, 3]

Problem 5

Rendering Point clouds

Rendering Torus

Rendering Implicit surfaces

Discussion: Seems that mesh provides more visually pleasing results, because it is more continous and smooth.

Another stuff is that, if for ray tracecing, seems that it is a little trick to determin the surface normal, becuase we can only find points rather than surfaces near the ray-object intersection (Also, determine ray-object intersection seems tricky too. But if we just compute distance from all the points to the ray seems ok. )

I think the major stuff is about smothness, especially the rendered smoothness. Mesh can achieve a good smoothness without huge sampling resolutions. But for point clouds, if we want to get smooth results, we need huge sampling resolutions.

Prob6

I downloaded a cute tree from free3d, and render it using the color mentioned in problem2.