Bowei Chen boweiche@andrew.cmu.edu
To reproduce the result, please run:
python starter/main.py
The 360 video is shown below:
The mesh should have 4 vertices and 4 faces.
The mesh should have 8 vertices and 12 faces.
I set color1 = [0, 0, 1]
and color2 = [1, 0, 0]
Top Left: R represents rotating 90 degree along z axis, which is [[0, 1, 0], [-1, 0, 0], [0, 0, 1]]. T is 0.
Top Right: R is identity, and T is [0, 0, 3]
Bottom Left: R is identity, and T is [1,-1,1]
Bottom Right: R represents rotating 90 degree along y axis, which is [[0, 0, 1.0], [0, 1, 0], [-1.0, 0, 0]]. T will translate the object back to the original position before rotation, which is [3, 0, 3]
Point cloud is more memory efficient than mesh because mesh need to store faces.
Generally, mesh can provide better rendering quality since it tends to provide smooth results.
The rendering speed of point cloud is faster than that of mesh.
I replace the texture of the cow with a wooden texture, producing a wooden cow.